/* 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: 1000;
    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;
    text-decoration: none;
}

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

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

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

/* Hero section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d4563 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: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

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

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

/* Page hero (for internal pages) */
.page-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d4563 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #e8eef5;
}

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

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

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

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

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

/* Image section */
.image-section {
    padding: 5rem 0;
}

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

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.split-text p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #4a9eff 0%, #3282e0 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e8f4ff;
}

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

.content-section.gray-bg {
    background-color: #f8f9fa;
}

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

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

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

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

/* Services detail */
.services-detail {
    padding: 3rem 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

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

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

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

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

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

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

.service-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

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

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

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

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

.process-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a9eff 0%, #3282e0 100%);
    color: #ffffff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

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

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

.submit-button {
    background: linear-gradient(135deg, #4a9eff 0%, #3282e0 100%);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* Reasons grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.reason-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

.legal-text h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

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

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

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

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d1d9e0;
    color: #8a9ba8;
    font-style: italic;
}

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

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

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

.footer-col p {
    margin-bottom: 0.5rem;
    color: #b8c5d0;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #b8c5d0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

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

    nav a {
        font-size: 0.9rem;
    }

    .hero .container,
    .split-layout,
    .service-block,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

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

    .split-layout.reverse,
    .service-block.reverse {
        direction: ltr;
    }

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

    .logo {
        font-size: 1.2rem;
    }
}

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

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero {
        padding: 3rem 0;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 1.6rem;
    }
}
