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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --text: #2c3e50;
    --light: #ecf0f1;
    --white: #ffffff;
    --gray: #95a5a6;
    --dark: #1a252f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

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

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

.header-main {
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-disclosure {
    opacity: 0.9;
    font-weight: 500;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
    position: relative;
}

.main-nav a:hover {
    color: var(--secondary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-magazine {
    min-height: 600px;
    background: linear-gradient(135deg, rgba(44,62,80,0.95), rgba(231,76,60,0.85)), var(--primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-magazine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image-box {
    flex: 0 0 480px;
    height: 420px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.section {
    padding: 90px 20px;
}

.section-alt {
    background: var(--light);
}

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

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

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.6;
}

.services-magazine {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-large {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-image {
    flex: 0 0 420px;
    height: 320px;
    background: var(--light);
    position: relative;
}

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

.service-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.service-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
}

.service-cta {
    padding: 12px 30px;
    background: var(--accent);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #e67e22;
    transform: scale(1.05);
}

.sidebar-card {
    background: var(--white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.sidebar-card ul {
    list-style: none;
    margin-top: 20px;
}

.sidebar-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: var(--text);
}

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

.form-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 80px 20px;
}

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

.form-title {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-description {
    text-align: center;
    font-size: 17px;
    margin-bottom: 45px;
    opacity: 0.95;
}

.booking-form {
    background: rgba(255,255,255,0.12);
    padding: 45px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.testimonial-card {
    flex: 1;
    background: var(--light);
    padding: 35px;
    border-radius: 6px;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 12px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-accept:hover {
    background: #e67e22;
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-reject:hover {
    background: var(--white);
    color: var(--dark);
}

.about-magazine {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-image {
    flex: 0 0 500px;
    height: 600px;
    background: var(--light);
    border-radius: 6px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 700;
}

.info-item {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light);
    border-radius: 6px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.contact-map {
    flex: 1;
    height: 500px;
    background: var(--light);
    border-radius: 6px;
    overflow: hidden;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-box {
    max-width: 700px;
}

.thanks-box h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text);
}

.thanks-icon {
    font-size: 80px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.service-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card-compact {
    flex: 0 0 calc(50% - 15px);
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-card-compact .service-image {
    height: 250px;
}

.service-card-compact .service-content {
    padding: 30px;
}

.service-card-compact h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.service-card-compact p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-compact .service-details {
    margin-top: 15px;
}

.reference-link {
    color: var(--secondary);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.reference-link:hover {
    color: #c0392b;
}

.references-section {
    background: var(--light);
    padding: 40px;
    margin-top: 60px;
    border-radius: 6px;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.references-section ol {
    margin-left: 25px;
}

.references-section ol li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-image-box {
        flex: 0 0 auto;
        width: 100%;
        height: 350px;
    }

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

    .service-card-large {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 280px;
    }

    .about-magazine {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        gap: 20px;
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-header h3 {
        font-size: 24px;
    }

    .form-title {
        font-size: 32px;
    }
}
