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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brand h1 {
    font-size: 22px;
    color: #2c3e50;
    font-weight: 700;
}

.ad-disclosure {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #bdc3c7;
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-magazine {
    margin-bottom: 50px;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #ffffff;
    padding: 60px 40px 40px;
}

.hero-overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
}

.intro-multi-column {
    padding: 60px 0;
    background-color: #ffffff;
}

.column-layout {
    display: flex;
    gap: 40px;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
}

.main-column article h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.main-column article p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #34495e;
}

.highlight-box {
    background-color: #ecf0f1;
    padding: 25px;
    border-left: 4px solid #3498db;
    margin-bottom: 25px;
}

.highlight-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.highlight-box p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 10px;
}

.image-accent {
    background-color: #bdc3c7;
}

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

.featured-services-magazine {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 15px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
    margin: 15px 0;
}

.btn-service {
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #2980b9;
}

.contact-form-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.form-wrapper-magazine {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.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 #bdc3c7;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-magazine {
    padding: 60px 0;
    background-color: #ecf0f1;
}

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

.testimonials-layout {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
}

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

.disclaimer-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 30px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-content h2 {
    font-size: 36px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 15px;
}

.thanks-selected-service {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.thanks-selected-service strong {
    color: #2c3e50;
    font-size: 16px;
}

.btn-home {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #2980b9;
}

.about-page {
    padding: 60px 0;
}

.about-hero {
    background-color: #3498db;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.about-hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.about-content {
    background-color: #ffffff;
    padding: 50px 0;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-section p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-image {
    margin: 40px 0;
    background-color: #bdc3c7;
}

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

.services-page {
    padding: 60px 0;
}

.services-hero {
    background-color: #16a085;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.services-hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.services-detailed {
    padding: 40px 0;
}

.service-detailed-card {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.service-detailed-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detailed-card p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 12px;
}

.service-detailed-card ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detailed-card li {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 8px;
}

.service-detailed-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.contact-page {
    padding: 60px 0;
}

.contact-hero {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-info-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-detail-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.contact-detail-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-detail-box p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-overlay h2 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

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

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