/* 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: #333;
    background: #fff;
}

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

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

ul {
    list-style: none;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb;
}

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

nav a {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e293b;
}

.hero-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

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

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

.cta-button:hover {
    background: #1d4ed8;
}

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

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

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

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

.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: 12px;
    color: #1e293b;
}

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

/* Visual Section */
.visual-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.text-content p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e293b;
    color: #fff;
    text-align: center;
}

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

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

.cta-section .cta-button {
    background: #fff;
    color: #1e293b;
}

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

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

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

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

/* Content Section */
.content-section {
    padding: 80px 0;
}

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

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

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

.main-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.main-content img {
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    padding: 30px;
    background: #f8fafc;
    border-radius: 8px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1e293b;
}

.sidebar-card ul li {
    padding: 8px 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

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

.service-block:last-child {
    margin-bottom: 0;
}

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

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

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

.service-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-text p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-text ul li {
    padding: 10px 0;
    padding-left: 30px;
    color: #64748b;
    position: relative;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8fafc;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px auto;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1e293b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
}

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

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e293b;
}

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

.contact-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

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

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

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

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

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

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #1e293b;
}

.legal-text p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-text ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text ul li {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-text em {
    color: #94a3b8;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

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

    .hero-content h1 {
        font-size: 36px;
    }

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

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

    .service-block {
        grid-template-columns: 1fr;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-images {
        grid-template-columns: 1fr;
    }

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

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

    .features h2,
    .cta-section h2,
    .process-section h2 {
        font-size: 28px;
    }
}

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

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

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

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