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

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

.header-magazine {
    background-color: #ffffff;
    border-bottom: 2px solid #ecf0f1;
}

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

.brand-section {
    flex: 1;
    min-width: 250px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.hero-overlay h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.3;
}

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

.intro-columns {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.column-left {
    flex: 1;
    min-width: 300px;
}

.column-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.column-right {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.column-right img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 20px;
    font-style: italic;
    color: #555;
}

blockquote p {
    margin-bottom: 10px;
    font-size: 18px;
}

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

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

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

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

.service-card {
    width: calc(33.333% - 20px);
    min-width: 280px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    flex: 1;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-link {
    text-align: center;
    margin-top: 40px;
}

.services-link a {
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 2px solid #3498db;
    padding-bottom: 3px;
}

.services-link a:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.form-section {
    background-color: #ecf0f1;
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 25px;
    color: #7f8c8d;
}

.selected-service-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    margin-bottom: 20px;
}

.selected-service-display p {
    margin-bottom: 5px;
    color: #155724;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.testimonials-magazine {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial-item cite {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(236, 240, 241, 0.1);
    border-top: 1px solid rgba(236, 240, 241, 0.2);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-top: 4px solid #3498db;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.team-approach {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 2;
    min-width: 300px;
}

.approach-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.approach-numbers {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background-color: #3498db;
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
}

.timeline-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border-left: 3px solid #3498db;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.cta-about {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ecf0f1;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.services-detail {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-full {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

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

.service-details {
    flex: 1;
    min-width: 300px;
}

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

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

.service-details ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details ul li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.contact-layout {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-map img {
    width: 100%;
    height: auto;
}

.contact-cta {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

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

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-details {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

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

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

.legal-page h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

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

    .main-nav {
        justify-content: center;
    }

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

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

    .intro-columns {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        width: 100%;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}