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

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

/* Header */
header {
    background: #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: 20px;
}

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

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

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

nav a:hover {
    color: #2563eb;
}

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

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

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

.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 10px 30px rgba(0,0,0,0.1);
}

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

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

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

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

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

.feature-card {
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2563eb;
}

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

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

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

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

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

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

/* Workflow Image Section */
.workflow-image {
    padding: 40px 0;
}

.workflow-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: #fff;
    color: #2563eb;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
}

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

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

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

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 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;
}

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

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

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

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

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

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2563eb;
}

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

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

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

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

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

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

/* Approach Detail */
.approach-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.3;
    margin-bottom: 16px;
}

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

.step p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* Workspace Image */
.workspace-image {
    padding: 40px 0;
}

.workspace-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

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

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

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

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

/* Services Detailed */
.services-detailed {
    padding: 0 0 80px 0;
}

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

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.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: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
}

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

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

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2563eb;
}

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

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

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

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

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2563eb;
    font-weight: 600;
}

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

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

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.submit-button {
    background: #2563eb;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Office Image */
.office-image {
    padding: 40px 0;
}

.office-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

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

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin: 24px 0 12px 0;
    color: #2563eb;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container,
    .approach-content,
    .about-content,
    .team-content,
    .intro-content,
    .service-block,
    .contact-grid,
    .cta-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .feature-grid,
    .values-grid,
    .service-cards {
        grid-template-columns: 1fr;
    }

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

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

    nav {
        gap: 16px;
        font-size: 14px;
    }

    header .container {
        flex-direction: column;
        gap: 16px;
    }
}

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

    .hero,
    .features,
    .approach,
    .about-intro,
    .values,
    .team-section,
    .approach-detail,
    .services-intro,
    .additional-services,
    .contact-content,
    .contact-cta,
    .cta-section {
        padding: 50px 0;
    }

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

    .approach-steps {
        grid-template-columns: 1fr;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-form {
        padding: 24px;
    }
}
