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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.5px;
}

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

nav a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

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

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #1f2937;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

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

.features h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

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

.feature-card {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

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

/* Visual Section */
.visual-section,
.work-section {
    padding: 5rem 0;
}

.visual-section {
    background-color: #ffffff;
}

.work-section {
    background-color: #f9fafb;
}

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

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.column-text p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.column-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #1f2937;
}

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

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.15rem;
    color: #6b7280;
}

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

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

.values-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

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

.value-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

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

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

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

.approach-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

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

.approach-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #1f2937;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-weight: 600;
}

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

/* Services Pages */
.services-intro {
    padding: 3rem 0;
    background-color: #ffffff;
}

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

.intro-content img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.intro-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.services-list {
    padding: 3rem 0;
    background-color: #ffffff;
}

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

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

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

.service-content h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    color: #111827;
    font-weight: 700;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.service-content ul li {
    padding: 0.5rem 0;
    color: #4b5563;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.process-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.process-section > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

.process-step {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1f2937;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-weight: 600;
}

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

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

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 600;
}

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

.contact-image {
    margin-top: 2rem;
}

.contact-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.contact-form {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 0.875rem;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.faq-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

/* Visual CTA */
.visual-cta {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #d1d5db;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #ffffff;
}

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

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

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

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

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

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .features h2,
    .values-section h2,
    .approach-section h2,
    .process-section h2,
    .faq-section h2 {
        font-size: 1.75rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

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

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

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

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .hero {
        padding: 3rem 0;
    }

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

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

    .features,
    .visual-section,
    .work-section,
    .cta-section,
    .values-section,
    .team-section,
    .approach-section,
    .process-section,
    .faq-section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 3rem 0 1.5rem;
    }

    .column-text h2,
    .service-content h2 {
        font-size: 1.5rem;
    }
}
