/* 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: #2c3e50;
    background-color: #ffffff;
}

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

/* Header */
header {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

nav a {
    color: #e1e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #4a9eff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: #ffffff;
    padding: 5rem 0;
}

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

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

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

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

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

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.workspace-section .container {
    text-align: center;
}

.workspace-section img {
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.workspace-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.workspace-text p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #4a5568;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

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

.content-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

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

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4a5568;
}

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

.expertise-layout img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.expertise-list ul {
    list-style: none;
}

.expertise-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.expertise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.approach-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-content img {
    width: 100%;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Services Intro */
.services-intro {
    padding: 5rem 0;
}

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

.intro-layout img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Services List */
.services-list {
    padding: 3rem 0 5rem;
}

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

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

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

.service-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.service-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-size: 1.5rem;
    line-height: 1;
}

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

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

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

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

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c5282;
    font-weight: 600;
}

.info-block p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    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: #4a9eff;
}

.submit-button {
    background-color: #2c5282;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1e3a5f;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.service-card p {
    color: #4a5568;
}

/* Legal Content */
.legal-content {
    padding: 5rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

.content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.content-wrapper a {
    color: #4a9eff;
    text-decoration: none;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #1e3a5f;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .split-layout,
    .intro-layout,
    .expertise-layout,
    .service-item,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .features h2,
    .values-section h2,
    .team-section h2,
    .approach-content h2,
    .process-section h2,
    .services-overview h2,
    .cta-section h2 {
        font-size: 2rem;
    }

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

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

    nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .page-header {
        padding: 2rem 0;
    }

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