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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 600px;
}

.intro-magazine {
    background-color: #ffffff;
    padding: 80px 40px;
}

.magazine-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.column-main {
    flex: 2.5;
}

.column-main h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.column-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.column-main img {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.column-sidebar {
    flex: 1;
}

.info-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #27ae60;
    border-radius: 6px;
    position: sticky;
    top: 100px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    color: #555;
    font-size: 15px;
}

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

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-grid-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    width: calc(33.333% - 27px);
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 25px 10px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 15px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 15px;
    display: block;
}

.service-card .select-service {
    margin: 0 25px 25px;
    padding: 12px 0;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #229954;
}

.form-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-magazine {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.testimonials-magazine h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #27ae60;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
    font-style: normal;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

    .service-card {
        width: 100%;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}