/* 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: #fff;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #1a1a1a;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: #f9fafb;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* Image Section */
.image-section {
    padding: 100px 0;
    background: #f5f7fa;
}

.image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.image-text p {
    color: #555;
    line-height: 1.7;
    font-size: 17px;
}

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

/* Workflow Section */
.workflow {
    padding: 100px 0;
}

.workflow h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.workflow-item {
    text-align: center;
}

.workflow-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.workflow-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.workflow-item p {
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f9fafb;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 18px;
    color: #555;
}

/* About Section */
.about-intro {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #f9fafb;
}

.values h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

/* Team Image */
.team-image {
    padding: 100px 0;
}

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

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-text p {
    color: #555;
    line-height: 1.7;
    font-size: 17px;
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background: #f5f7fa;
}

.approach h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.approach-item p {
    color: #555;
    line-height: 1.7;
}

/* Services Intro */
.services-intro {
    padding: 80px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.intro-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 17px;
}

/* Services Main */
.services-main {
    padding: 60px 0 100px;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detailed.reverse img {
    order: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-content ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detailed img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-cards {
    padding: 100px 0;
    background: #f9fafb;
}

.service-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

/* Contact Section */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Contact Image */
.contact-image {
    padding: 100px 0;
    background: #f5f7fa;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 17px;
}

/* Contact FAQ */
.contact-faq {
    padding: 100px 0;
}

.contact-faq h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

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

.legal-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

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

.legal-text h3 {
    font-size: 24px;
    margin: 28px 0 16px;
    color: #1a1a1a;
}

.legal-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-text ul {
    margin: 16px 0 24px 24px;
    color: #555;
    line-height: 1.7;
}

.legal-text ul li {
    margin-bottom: 8px;
}

/* CTA Simple */
.cta-simple {
    padding: 100px 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.cta-simple h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #fff;
}

.cta-simple p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #ddd;
}

.cta-simple .cta-button {
    background: #fff;
    color: #1a1a1a;
}

.cta-simple .cta-button:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    nav {
        gap: 16px;
    }

    nav a {
        font-size: 14px;
    }

    .features-grid,
    .values-grid,
    .approach-content,
    .cards-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-content,
    .about-content,
    .cta-content,
    .intro-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detailed,
    .service-detailed.reverse {
        grid-template-columns: 1fr;
    }

    .service-detailed.reverse .service-content,
    .service-detailed.reverse img {
        order: unset;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .features h2,
    .workflow h2,
    .values h2,
    .approach h2,
    .service-cards h2,
    .contact-faq h2,
    .cta-simple h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

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