* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #000000;
}

.header-magazine {
    border-bottom: 3px solid #2c3e50;
}

.header-top {
    background: #f8f9fa;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.brand-section {
    text-align: center;
    padding: 3rem 2rem;
}

.brand-logo {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #34495e;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    max-width: 600px;
}

.hero-overlay h2 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.intro-columns {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    align-items: flex-start;
}

.column-left {
    flex: 1;
    padding-right: 2rem;
}

.column-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
}

.column-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.column-right {
    flex: 1;
    background-color: #ecf0f1;
}

.inline-image {
    width: 100%;
    height: auto;
}

.story-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
    margin: 2rem 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.visual-break {
    margin: 4rem 0;
    background-color: #95a5a6;
}

.full-width-image {
    width: 100%;
    height: auto;
}

.services-grid-magazine {
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-large {
    flex: 1 1 calc(66.666% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #ecf0f1;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card-large:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card-medium {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #ecf0f1;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card-medium:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card-small {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #ecf0f1;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card-small:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 280px;
    background-color: #95a5a6;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: #34495e;
}

.select-service-btn.selected {
    background: #27ae60;
}

.form-section-magazine {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.route-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input {
    padding: 0.9rem;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.submit-btn {
    padding: 1.2rem;
    background: #27ae60;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #229954;
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 4rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.trust-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-top: 2px solid #e0e0e0;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.footer-magazine {
    background: #34495e;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #7f8c8d;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin-bottom: 1rem;
}

.thanks-container .selected-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-container .selected-info strong {
    color: #2c3e50;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #2980b9;
}

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h2 {
    font-size: 3rem;
    font-weight: 300;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h3 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    margin-bottom: 0.7rem;
    color: #34495e;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .brand-logo {
        font-size: 2.5rem;
    }

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

    .intro-columns {
        flex-direction: column;
    }

    .column-left {
        padding-right: 0;
    }

    .footer-columns {
        flex-direction: column;
    }

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