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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #2563eb;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #667eea;
}

.btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background-color: #667eea;
    color: #fff;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.75rem;
    color: #1f2937;
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
}

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

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text .btn-secondary {
    margin-top: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

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

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.content-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Values Section */
.values {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.values h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.team-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.team-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.team-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Methodology Section */
.methodology {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.methodology h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.method-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.method-step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.method-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Section */
.services-intro {
    padding: 4rem 0;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.intro-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.services-detail {
    padding: 3rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-item.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-item.reverse .service-content {
    order: 2;
}

.service-item.reverse .service-image {
    order: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1f2937;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-content ul {
    list-style: none;
    margin-left: 0;
}

.service-content li {
    padding: 0.5rem 0 0.5rem 2rem;
    color: #6b7280;
    position: relative;
}

.service-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Process Overview */
.process-overview {
    padding: 5rem 0;
}

.process-overview h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.process-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.process-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.process-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.info-block p {
    color: #6b7280;
    line-height: 1.7;
}

.contact-info img {
    width: 100%;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.contact-form h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Visit Section */
.visit-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.visit-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.visit-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.visit-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.faq-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn-primary {
    background-color: #fff;
    color: #667eea;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.25rem;
    margin-left: 2rem;
    color: #4b5563;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

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

    .page-hero p {
        font-size: 1rem;
    }

    .about-layout,
    .content-layout,
    .team-layout,
    .intro-layout,
    .service-item,
    .service-item.reverse,
    .visit-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item.reverse .service-content,
    .service-item.reverse .service-image {
        order: 0;
    }

    .feature-grid,
    .values-grid,
    .method-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        width: 100%;
        justify-content: space-around;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .page-hero {
        padding: 2.5rem 0;
    }
}
