* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

nav {
    flex-grow: 1;
}

nav ul {
    list-style: none;
}

nav ul li {
    margin-bottom: 25px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

nav ul li a:hover {
    color: #fff;
    border-left-color: #4ecdc4;
    transform: translateX(5px);
}

.ad-disclosure {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 12px;
    color: #ccc;
    margin-top: auto;
    line-height: 1.4;
}

main {
    margin-right: 280px;
    min-height: 100vh;
}

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a2e;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
    margin-left: 120px;
}

.hero-content h1 {
    font-size: 68px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 22px;
    color: #f0f0f0;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #4ecdc4;
    color: #1a1a2e;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(78,205,196,0.3);
}

.cta-button:hover {
    background: #45b8af;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78,205,196,0.4);
}

.section-offset {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.offset-content {
    flex: 1;
    padding: 80px 60px 80px 120px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offset-visual {
    flex: 1;
    position: relative;
    background-color: #e8eef2;
}

.offset-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-offset.reverse {
    flex-direction: row-reverse;
}

.section-offset.reverse .offset-content {
    padding: 80px 120px 80px 60px;
}

.offset-content h2 {
    font-size: 46px;
    color: #1a1a2e;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.offset-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.offset-content ul {
    list-style: none;
    margin: 30px 0;
}

.offset-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.offset-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: 700;
}

.services-grid {
    padding: 100px 120px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-grid h2 {
    font-size: 52px;
    color: #1a1a2e;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: left;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 27px);
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8eef2;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    color: #4ecdc4;
    font-weight: 700;
    margin-top: auto;
}

.service-select-btn {
    display: inline-block;
    background: #4ecdc4;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

.service-select-btn:hover {
    background: #45b8af;
    transform: scale(1.05);
}

.form-section {
    padding: 100px 120px;
    background: #fff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-container p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #4ecdc4;
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #45b8af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78,205,196,0.3);
}

.testimonials-section {
    padding: 100px 120px;
    background: #1a1a2e;
}

.testimonials-section h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 15px;
    flex: 1;
    border-left: 4px solid #4ecdc4;
}

.testimonial p {
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #4ecdc4;
    font-weight: 600;
}

footer {
    background: #0f1419;
    color: #ccc;
    padding: 60px 120px 40px;
    margin-right: 280px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section ul {
    font-size: 15px;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

.disclaimer {
    background: rgba(78,205,196,0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #4ecdc4;
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 280px;
    background: #1a1a2e;
    padding: 25px 120px;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-content {
    color: #e0e0e0;
    font-size: 15px;
    flex: 1;
    margin-right: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-accept {
    background: #4ecdc4;
    color: #1a1a2e;
}

.cookie-accept:hover {
    background: #45b8af;
}

.cookie-reject {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #e0e0e0;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-header {
    padding: 150px 120px 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.page-header h1 {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #e0e0e0;
    max-width: 800px;
}

.content-section {
    padding: 80px 120px;
    background: #fff;
}

.content-section h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.content-section p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section ul li,
.content-section ol li {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid #4ecdc4;
}

.contact-info-card h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.thanks-section {
    min-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 120px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thanks-content {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-content a {
    display: inline-block;
    background: #4ecdc4;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.thanks-content a:hover {
    background: #45b8af;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    header {
        width: 100%;
        height: auto;
        position: relative;
    }

    main {
        margin-right: 0;
    }

    footer {
        margin-right: 0;
    }

    .cookie-banner {
        right: 0;
    }

    .hero-content {
        margin-left: 40px;
        padding: 0 40px;
    }

    .services-grid,
    .form-section,
    .testimonials-section,
    .content-section,
    .page-header,
    .thanks-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    footer {
        padding-left: 60px;
        padding-right: 60px;
    }

    .offset-content {
        padding: 60px;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .section-offset {
        flex-direction: column;
    }

    .section-offset.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-banner.show {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        margin-top: 20px;
    }
}
