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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #2c3e50;
    padding: 20px 0;
}

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.brand-area {
    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-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
}

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

.hero-magazine {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-content-split {
    max-width: 700px;
}

.hero-text h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.intro-columns {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.col-magazine {
    flex: 1;
    min-width: 280px;
}

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

.col-magazine p {
    font-size: 16px;
    color: #555;
}

.services-magazine {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header-offset {
    margin-bottom: 50px;
    max-width: 600px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-mag {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    padding: 30px;
    border-radius: 8px;
}

.service-image-wrap {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.service-image-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-mag:hover .service-image-wrap img {
    transform: scale(1.05);
}

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

.service-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.btn-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonial-offset {
    padding: 60px 0;
    background-color: #34495e;
}

.testimonial-quote {
    border-left: 5px solid #e74c3c;
    padding-left: 30px;
    font-style: italic;
}

.testimonial-quote p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-quote cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

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

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

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.two-column-trust {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-col {
    flex: 1;
    min-width: 300px;
}

.trust-col img {
    width: 100%;
    border-radius: 8px;
}

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

.trust-col p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

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

.footer-grid-magazine {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.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: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-bottom: 30px;
}

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

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

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

.page-hero-small {
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
}

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

.page-hero-small p {
    font-size: 18px;
    color: #ecf0f1;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.story-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.mission-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    display: block;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member p {
    font-size: 15px;
    color: #7f8c8d;
}

.values-section {
    padding: 80px 0;
}

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

.values-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

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

.value-item p {
    font-size: 16px;
    color: #555;
}

.services-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.services-intro p {
    font-size: 18px;
    color: #555;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed {
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 60px;
}

.service-detailed:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-detail-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

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

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

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.cta-section-services {
    padding: 80px 0;
    background-color: #34495e;
    text-align: center;
}

.cta-section-services h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section-services p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.contact-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    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;
}

.contact-detail {
    margin-bottom: 30px;
}

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

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

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

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.service-confirmation {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.service-confirmation p {
    color: #27ae60;
    font-weight: 600;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary {
    padding: 14px 32px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 32px;
    }

    .service-card-mag {
        flex: 1 1 100%;
    }

    .main-nav {
        gap: 15px;
    }

    .section-header-offset h2 {
        font-size: 32px;
    }

    .thanks-content h2 {
        font-size: 28px;
    }
}