body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F3F3F3;
    color: black;
}

/* =======================
   LAYOUT CONTAINER
======================= */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.primary-text {
    color: #6A00FF;
}

/* =======================
   HEADER
======================= */
.header {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    gap: 64px;
    line-height: 1;
}

.logo {
    font-weight: bold;
    font-size: 18px;
}

.nav-left,
.nav-right {
    display: flex;
}

.nav-left {
    gap: 64px;
}

.nav-right {
    margin-left: auto;
    gap: 40px;
    align-items: center;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: black;
    transition: 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    color: gray;
}

.contact-btn {
    border: 1px solid black;
    padding: 8px 16px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.contact-btn:hover {
    color: gray;
    border-color: gray;
}

/* =======================
   SPACING
======================= */
.section-space {
    height: 64px;
}

/* =======================
   HERO
======================= */
.hero {
    padding: 0 40px;
    text-align: left;
}

.hero h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

/* PRIMARY BUTTON */
.primary {
    background-color: #6A00FF;
    color: white;
}

.primary:hover {
    background-color: #5200cc;
}

/* OUTLINE BUTTON */
.outline {
    border: 1px solid black;
    color: black;
    background: transparent;
}

.outline:hover {
    color: gray;
    border-color: gray;
}

/* =======================
   SERVICES
======================= */
.services {
    padding: 0 40px;
}

.bubble {
    display: inline-flex;
    align-self: flex-start;
    width: fit-content;

    padding: 4px 8px;
    border-radius: 6px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    font-size: 14px;
}

.columns {
    display: flex;
    gap: 40px;
}

.col {
    flex: 1;
    text-align: left;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(106, 0, 255, 0.05);
    border: 1px solid rgba(106, 0, 255, 0.2);

    margin-bottom: 24px;
}

.icon {
    width: 20px;
    height: 20px;
    color: #6A00FF;
    stroke-width: 2;
}

.col h3 {
    margin: 10px 0 5px;
    font-weight: bold;
}

/* MORE LINK */
.more-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: black;
    transition: 0.2s ease;
}

.more-link:hover {
    color: gray;
}

.more-link i {
    transition: 0.2s ease;
}

.more-link:hover i {
    color: gray;
}

/* =======================
   TEAM SECTION
======================= */
.team-container {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    align-items: stretch;
}

.team-container > div {
    flex: 1;
}

/* IMAGE COLUMN */
.team-image {
    overflow: hidden;
}

/* IMAGE FIT + CENTER CROP */
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* TEXT COLUMN */
.team-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

/* AVATARS */
.avatars {
    display: flex;
    margin: 20px 0;
    align-items: center;
}

.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid black;
    object-fit: cover;
}

.avatar.top {
    margin-left: -12px;
    z-index: 2;
}

/* =======================
   FOOTER
======================= */
.footer {
    text-align: left;
    padding: 20px 40px;
    font-size: 14px;
}

/* ICON ALIGNMENT FIX */
[data-lucide] {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}



@media (max-width: 800px) {
	.page-container {
		padding: 0 2%;
	}
	
    .header {
		display: flex;
		align-items: center;
		padding: 20px 40px;
		gap: 20px;
		line-height: 1;
	}
	
	.nav-left {
		gap: 20px;
	}
	
    .nav-right {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .hero,
    .services,
    .team-container {
        padding: 0 20px;
    }

    .columns {
        flex-direction: column;
    }

    .team-container {
        flex-direction: column;
    }

    .team-image img {
        width: 100%; /* prevents huge vertical image on mobile */
    }
}