/* Base Styles */
:root {
    --primary-color: #1A365D;
    --primary-light: #2B6CB0;
    --accent-color: #D69E2E;
    --accent-light: #ECC94B;
    --text-color: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;
    --light-gray: #F7FAFC;
    --border-color: #E2E8F0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: var(--accent-color);
    border-radius: 0.25rem;
}

/* Header und Navigation */
header {
    background-color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 4.5rem;
    transition: var(--transition);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

nav a:hover:after {
    width: 100%;
}

/* Contact Header */
.contact-header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-button i {
    font-size: 1.1rem;
}

/* Make phone number more prominent */
.contact-button[href^="tel:"] {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--primary-color);
}

.contact-button[href^="tel:"]:hover {
    background: var(--accent-color);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .contact-header {
        display: none; /* Hide contact info in header on mobile */
    }

    nav .contact-header {
        display: flex; /* Show contact info in mobile menu */
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
    }

    nav .contact-button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        transition: var(--transition);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 6rem 2rem 2rem;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
        display: flex;
        flex-direction: column;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    nav ul li a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.svg') repeat;
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 42rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-content span {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.hero-line {
    display: block;
    font-weight: 400;
}

.hero-highlight {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 700;
    margin: 0 0.25rem;
}

.hero-content .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-content .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero-content .cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

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

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        min-height: calc(100vh - 6rem);
    }

    .hero .container {
        padding-top: 2rem;
        text-align: left;
    }

    .hero-content {
        margin-top: 2rem;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.4;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .hero-gpp {
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-highlight {
        padding: 0.2rem 0.5rem;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services h2 {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    padding-bottom: 3rem; /* Extra space for the plus icon */
}

.service-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: var(--transition);
}

.service-item:hover:before {
    height: 0.75rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

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

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.expand-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--transition);
}

.service-item:hover .expand-icon {
    transform: scale(1.2);
    background: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: auto;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-content li:before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

.modal-content li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }

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

    .service-item {
        padding: 2rem;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

.about h2 {
    margin-bottom: 4rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.8;
}

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

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    padding-bottom: 3rem; /* Extra space for the plus icon */
}

.philosophy-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.philosophy-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 1rem 0;
    transition: var(--transition);
}

.philosophy-item:hover i {
    transform: scale(1.1);
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.philosophy-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: var(--transition);
}

.philosophy-item:hover:before {
    height: 0.75rem;
}

.expand-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--transition);
}

.philosophy-item:hover .expand-icon {
    transform: scale(1.2);
    background: var(--primary-color);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.faq h2 {
    margin-bottom: 4rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    transform: translateX(0.5rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-question:after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 2rem 1.5rem;
}

.faq-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0.5rem;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-light));
    transition: var(--transition);
}

.faq-item.active:before {
    height: 100%;
}

.faq-answer p {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-answer p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.process-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.process-step ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.process-step ul li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.faq-answer ol {
    counter-reset: faq-counter;
}

.faq-answer ol > li {
    counter-increment: faq-counter;
    position: relative;
}

.faq-answer ol ul {
    margin-top: 1rem;
}

.faq-answer ol ul li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: none;
}

.faq-answer ol ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.faq-answer ol > li strong {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        max-height: 5000px;
        padding: 0 1.5rem 1.25rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

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

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.contact-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    background: var(--light-gray);
}

.contact-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
    outline: none;
    background: var(--white);
}

.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    background: var(--light-gray);
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
    outline: none;
    background: var(--white);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.info-item:hover {
    transform: translateX(0.5rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.info-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-light));
    transition: var(--transition);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact {
        padding: 4rem 0;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 4rem 0 2rem;
    color: var(--white);
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Company Info */
.footer-company {
    padding-right: 2rem;
}

.footer-company h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-company p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-company a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-company a:hover {
    color: var(--accent-color);
}

/* Legal Links */
.footer-legal h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal a:hover {
    color: var(--accent-color);
    transform: translateX(0.5rem);
}

.footer-legal a:before {
    content: '→';
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-legal a:hover:before {
    transform: translateX(0.25rem);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-0.5rem);
    border-color: var(--accent-color);
}

/* Copyright Bar */
.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-company {
        padding-right: 0;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--white);
        box-shadow: var(--shadow-sm);
        padding: 0.5rem 0 !important;
    }

    header .container {
        padding: 0.5rem 1rem !important;
    }

    .logo img {
        max-height: 90px;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .hero-gpp {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .hero-buttons {
        margin-top: 1rem;
    }

    .hero-buttons .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Founder Section */
.founder {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.founder h2 {
    margin-bottom: 4rem;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.founder-image {
    position: relative;
}

.founder-photo {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.founder-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.founder-text p {
    margin-bottom: 1.5rem;
}

.founder-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .founder {
        padding: 4rem 0;
    }

    .founder-text {
        font-size: 1rem;
    }
}