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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header and Navigation */
header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

nav a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.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: 20px;
    color: #1a1a1a;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #333;
}

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

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

.feature-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

/* Content Section */
.content-section {
    padding: 80px 0;
}

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

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

.content-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Image Text Section */
.image-text-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

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

.text-right p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-section .btn {
    background-color: #fff;
    color: #1a1a1a;
}

.cta-section .btn:hover {
    background-color: #f0f0f0;
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #666;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

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

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

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.team-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.approach-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

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

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

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

.intro-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Services List */
.services-list {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-items {
    display: grid;
    gap: 30px;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.process-step {
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

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

.services-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

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

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

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

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

/* Contact Form */
.contact-form h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

/* Contact Image Section */
.contact-image-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Contact Text Section */
.contact-text-section {
    padding: 60px 0;
}

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

.contact-text-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 800px;
}

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

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

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero .container,
    .content-grid,
    .image-text-grid,
    .team-content,
    .approach-grid,
    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .feature-grid,
    .values-grid,
    .process-grid,
    .services-image-grid {
        grid-template-columns: 1fr;
    }

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

    .content-text h2,
    .text-right h2,
    .approach-text h2,
    .intro-text h2,
    .contact-info h2,
    .contact-form h2,
    .contact-text-content h2 {
        font-size: 28px;
    }

    .cta-section h2,
    .values-section h2,
    .team-section h2,
    .process-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .page-header h1 {
        font-size: 28px;
    }

    nav a {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
