* {
    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: #f8f9fa;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: #1a2332;
    color: #ecf0f1;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-inner {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logo h1 {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 0.3rem;
}

.tagline {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 2rem;
}

.main-nav {
    flex-grow: 1;
}

.main-nav ul {
    list-style: none;
}

.main-nav li {
    margin-bottom: 0.5rem;
}

.main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: #bdc3c7;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    transform: translateX(5px);
}

.main-nav a.active {
    background: #3498db;
    color: white;
}

.ad-notice {
    padding: 1rem;
    background: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #e74c3c;
    margin: 2rem 0;
    border-radius: 4px;
}

.ad-notice small {
    font-size: 0.75rem;
    color: #ecf0f1;
}

.sidebar-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 0.4rem;
}

.legal-links a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #3498db;
}

.content-area {
    margin-left: 280px;
    flex: 1;
    padding: 3rem 4rem;
}

.hero-inline {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    margin-bottom: 4rem;
}

.services-preview h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background: #d0d7de;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a2332;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    color: #3498db;
    font-weight: 600;
}

.cta-button {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    width: calc(100% - 3rem);
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

.why-archiving {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.content-block {
    flex: 1.2;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.content-block p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

.image-block {
    flex: 1;
    background: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-banner {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 4rem;
}

.cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cta-button-large {
    padding: 1.2rem 3rem;
    background: white;
    color: #3498db;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.process-flow {
    margin-bottom: 4rem;
}

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

.process-steps {
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.step p {
    color: #546e7a;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-container h3 {
    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: #2c3e50;
    font-weight: 500;
}

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

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

.submit-button {
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #2980b9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background: #27ae60;
    color: white;
}

.cookie-reject {
    background: #7f8c8d;
    color: white;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .content-area {
        margin-left: 240px;
        padding: 2rem;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .step {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }

    .content-area {
        margin-left: 0;
        padding: 1.5rem;
    }

    .hero-inline,
    .why-archiving,
    .process-steps,
    .service-cards {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}