/* Google Font loaded via HTML link tags for better performance */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --text-primary: #1f2937;
    --text-secondary: #374151;
    --background: #ffffff;
    --card-background: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #818cf8;
        --primary-hover: #6366f1;
        --text-primary: #f9fafb;
        --text-secondary: #f3f4f6;
        --background: #111827;
        --card-background: #1f2937;
        --border-color: #374151;
        --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    }

    /* Force the black logo asset to render white in dark mode */
    .logo-svg {
        filter: brightness(0) invert(1);
    }
}

body, html {
    font-family: 'Oxygen', sans-serif !important;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--background);
    transition: all 0.3s ease;
    overflow-x: hidden;
    font-display: swap;
}

/* Ensure all elements use Oxygen font */
*, *::before, *::after {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, textarea {
    font-family: 'Oxygen', sans-serif !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--background);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo picture,
.logo img {
    display: block;
}

.logo-svg {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: filter 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-close {
    display: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--card-background) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    width: 600px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--card-background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-icon {
    margin-bottom: 1rem;
}

.section-icon svg {
    width: 60px;
    height: auto;
    fill: var(--primary-color);
}

.about-text h2 {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-hover);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--card-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background) 0%, var(--card-background) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.team-member {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    margin-bottom: 2rem;
}

.member-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-title {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.member-bio p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Footer */
.footer {
    background-color: var(--card-background);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section:nth-child(2) {
    justify-self: end;
    width: max-content;
    text-align: left;
    padding-right: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background);
    color: var(--text-primary);
}

.newsletter-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--primary-hover);
}

.footer-link-paragraph {
    margin-top: 1.5rem;
}

.footer-text-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.footer-text-link:hover {
    color: var(--primary-hover) !important;
    text-decoration: underline !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background) 0%, var(--card-background) 100%);
    text-align: center;
}



/* Services Introduction Section */
.services-intro {
    padding: 80px 0;
    background-color: var(--card-background);
}

.services-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-intro-text {
}

.services-intro-text .section-icon {
    margin-bottom: 1.5rem;
}

.services-intro-text .section-icon svg {
    width: 60px;
    height: auto;
    fill: var(--primary-color);
}

.services-intro-text h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.services-intro-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-intro-image {
    text-align: center;
}

.services-intro-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 500px;
}

.services-details {
    padding: 80px 0;
}

/* Alternating backgrounds for services */

#AppDevelopment,
#UXResearch,
#BrandManagement {
    background-color: var(--card-background);
    padding: 4rem 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.service-detail {
    margin-bottom: 6rem;
}

.service-detail:nth-child(even) {
    background-color: var(--card-background);
    padding: 3rem 0;
    position: relative;
}

.service-detail:nth-child(even):before {
    content: '';
    position: absolute;
    left: -100px;
    right: -100px;
    top: 0;
    bottom: 0;
    background-color: var(--card-background);
    z-index: -1;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: flex-start;
}

.service-detail-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: calc(60px + 1.5rem);
}

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 12px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.service-detail-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
    color: white;
}

.service-detail-header h3 {
    font-size: 1.875rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
    color: var(--text-primary);
}

.service-detail-text h3 {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.service-detail-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary-color);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-left-color 0.3s ease;
}

.service-features li:hover {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.service-features li:hover::before {
    transform: translateX(4px);
    border-left-color: var(--primary-hover);
}

.services-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background);
}

.services-cta h2 {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Hero Section Component */
.hero-section {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--card-background) 100%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Logo mobile sizing */
    .logo-svg {
        height: 40px;
        max-width: 150px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 9999;
        padding: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        color: white;
        font-size: 1.5rem;
        font-weight: 400;
        text-align: center;
    }

    .nav-menu a:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .menu-close {
        position: absolute;
        top: 7rem;
        left: 50%;
        transform: translateX(-50%);
        background: none;
        border: none;
        color: white;
        font-size: 2.5rem;
        cursor: pointer;
        display: block;
        padding: 0;
        width: auto;
        height: auto;
    }

    .menu-close:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-text {
        text-align: center;
    }

    .about-text p {
        text-align: left;
    }


    /* Services intro responsive styles */
    .services-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-intro-image {
        order: -1;
    }

    .services-intro-text p {
        text-align: left;
    }

    .service-detail {
        margin-bottom: 4rem;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .service-detail-icon {
        flex-shrink: 0;
    }

    .service-detail-left p {
        text-align: left;
    }

    .service-detail-right {
        margin-top: 1rem;
    }


    .hero h1 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2,
    .section-heading {
        font-size: 2rem;
    }

    .page-hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    /* About page mobile styles */
    .about-hero {
        padding: 120px 0 20px;
    }

    .about-hero h1 {
        font-size: 2rem;
        padding: 0 20px;
    }

    .about-section {
        padding: 40px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .member-info h3 {
        font-size: 1.3rem;
    }

    .member-title {
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Services page mobile styles */

    /* Services intro mobile styles */
    .services-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-intro-text {
        text-align: left;
        padding-top: 0;
    }

    .services-intro-text h2 {
        font-size: 1.1rem;
    }

    .services-intro-image img {
        width: 350px;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-detail-left {
        text-align: center;
    }

    .service-detail-right {
        padding-top: 0;
    }

    .service-detail-header {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .service-detail-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .service-detail-text h3,
    .service-detail-header h3 {
        font-size: 1.5rem;
    }

    .services-cta h2 {
        font-size: 1.5rem;
    }
}

/* Privacy Policy Styles */
.privacy-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background) 0%, var(--card-background) 100%);
    text-align: center;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    padding: 80px 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.privacy-intro {
    margin-bottom: 3rem;
}

.privacy-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.8;
}

.privacy-item {
    margin-bottom: 3rem;
}

.privacy-item h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.privacy-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.privacy-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-item a:hover {
    color: var(--primary-hover);
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 0 20px;
    }

    .privacy-hero h1,
    .page-hero-title,
    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .hero-section {
        padding: 120px 0 20px;
    }

    .privacy-section {
        padding: 40px 0;
    }

    .privacy-content {
        padding: 0 20px;
    }

    .privacy-item h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .privacy-hero h1,
    .page-hero-title,
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 120px 0 20px;
    }

    .privacy-item h2 {
        font-size: 1.2rem;
    }

    .privacy-intro p,
    .privacy-item p {
        font-size: 1rem;
    }
}

/* Hero Section Component moved to earlier in file to prevent cascade issues */

/* Hero Title Component */
.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: var(--card-background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-info h2.section-heading {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-description {
    margin-bottom: 2rem;
}

.contact-description p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    width: 1.2em;
    height: 1.2em;
    fill: var(--primary-color);
    color: var(--primary-color);
}

.contact-detail-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    width: 500px;
}

.contact-form-section {
    padding: 4rem 0;
    background-color: var(--background);
    border-top: 1px solid var(--border-color);
}

.contact-form-section .section-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-align: center;
}

.contact-form-section h2.section-heading {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-form {
    max-width: 85%;
    margin: 0 auto;
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--primary-color);
    font-weight: 400;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Oxygen', sans-serif;
    background-color: var(--card-background);
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.consent-group {
    margin: 1.5rem 0;
}

.consent-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: default;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Oxygen', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 140px;
    justify-content: center;
}

.contact-submit-btn:hover:not(:disabled) {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.spinner svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Section Heading Component */
.section-heading {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Page Hero Title Component */
.page-hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.success-message {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
}

.error-message {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
}

/* Newsletter form in footer */
.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .form-group {
    margin-bottom: 1rem;
}

.newsletter-form .form-input {
    background-color: var(--background);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-image {
        order: -1;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 85%;
        margin: 0 auto;
        padding: 1.5rem;
        background-color: var(--card-background);
        border-radius: 12px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-color);
    }

    .contact-info h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    .contact-info h2.section-heading,
    .contact-form-section h2.section-heading {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-image img {
        width: 350px;
    }
}

@media (max-width: 480px) {
    .contact-section,
    .contact-form-section {
        padding: 2rem 0;
    }

    .contact-info h2,
    .contact-form-section h2 {
        font-size: 1.25rem;
    }

    .contact-info h2.section-heading,
    .contact-form-section h2.section-heading {
        font-size: 1.5rem;
    }

    .contact-form {
        max-width: 100%;
        padding: 1rem;
    }

    .contact-image img {
        width: 300px;
    }

    .contact-submit-btn {
        width: 100%;
    }

    /* Footer mobile responsiveness */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section:nth-child(2) {
        justify-self: start;
        width: auto;
    }
}
/* Test change */
