/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style-position: inside;
}

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

/* Header */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

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

nav a {
    color: #4a5568;
    font-weight: 500;
    position: relative;
}

nav a:hover {
    color: #2d3748;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d3748;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

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

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

.hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

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

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

.feature-card {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

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

/* Visual Section */
.visual-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

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

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

.column-text p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #2d3748;
    color: #ffffff;
    position: relative;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-section img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.cta-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #2d3748;
    border-color: #ffffff;
}

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

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

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

.page-header p {
    font-size: 1.125rem;
    color: #4a5568;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 3rem;
    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;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.approach-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.approach-section img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

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

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

.service-content h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-content ul {
    color: #4a5568;
    line-height: 2;
}

.service-content ul li {
    margin-bottom: 0.5rem;
}

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

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

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

.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;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

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

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

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

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

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

.contact-info > p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.contact-item h3 {
    font-size: 1rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.8;
}

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

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    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: #2d3748;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

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

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

.legal-text h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.legal-text ul {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.legal-text ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-text a {
    color: #2d3748;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #1a202c;
}

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

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

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

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

.footer-column a {
    display: block;
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

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

    .hero .container,
    .two-column,
    .cta-section .container,
    .approach-section .container,
    .service-item,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-column.reverse,
    .service-item.reverse {
        direction: ltr;
    }

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

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

    .column-text h2,
    .cta-content h2,
    .approach-content h2,
    .page-header h1 {
        font-size: 1.75rem;
    }

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

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

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

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

    nav {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .features,
    .visual-section,
    .cta-section,
    .content-section,
    .values-section,
    .team-section,
    .approach-section,
    .process-section,
    .contact-section,
    .info-section {
        padding: 3rem 0;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
