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

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

.ad-disclosure {
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.magazine-header {
    border-bottom: 3px solid #1a1a1a;
    padding: 20px 0;
    background: #fff;
}

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

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -1px;
    font-family: 'Arial', sans-serif;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 85%;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
}

.magazine-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

.intro-column {
    flex: 2;
}

.intro-column h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-column p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #444;
}

.sidebar-quick {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-info {
    background: #f4f4f4;
    padding: 30px;
    border-left: 4px solid #c44536;
}

.quick-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

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

.cta-link {
    display: inline-block;
    color: #c44536;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #a33528;
}

.services-showcase {
    background: #fafafa;
    padding: 80px 30px;
}

.showcase-header {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.showcase-header h2 {
    font-size: 42px;
    text-align: center;
    color: #1a1a1a;
}

.services-columns {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 30px;
}

.service-card {
    flex: 1;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    background: #e8e8e8;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #555;
}

.price-tag {
    margin: 0 25px 25px;
    font-size: 24px;
    font-weight: 700;
    color: #c44536;
    font-family: 'Arial', sans-serif;
}

.testimonial-block {
    background: #2c2c2c;
    color: #fff;
    padding: 70px 30px;
}

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

.testimonial-inner blockquote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.about-preview {
    padding: 80px 30px;
    background: #fff;
}

.about-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.about-image {
    flex: 1;
}

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

.form-section {
    background: #f9f9f9;
    padding: 80px 30px;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background: #c44536;
    color: #fff;
    padding: 15px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 30px 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.cookie-btn.accept {
    background: #c44536;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #a33528;
}

.cookie-btn.reject {
    background: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #444;
}

.page-hero {
    background: #2c2c2c;
    color: #fff;
    padding: 80px 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #ccc;
}

.about-layout {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

.about-story {
    flex: 2;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-story h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.about-story p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.about-sidebar {
    flex: 1;
}

.team-box,
.values-box {
    background: #f4f4f4;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #c44536;
}

.team-box h3,
.values-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.team-box p {
    font-size: 15px;
    color: #555;
}

.values-box ul {
    list-style: none;
}

.values-box li {
    font-size: 15px;
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #ddd;
}

.values-box li:last-child {
    border-bottom: none;
}

.mission-section {
    background: #fafafa;
    padding: 80px 30px;
}

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

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.mission-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.cta-about,
.cta-services,
.cta-contact {
    background: #c44536;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #c44536;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-button:hover {
    background: #f4f4f4;
}

.services-grid-page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-image-wrapper {
    flex: 1;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    background: #e8e8e8;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #c44536;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
}

.service-features li:last-child {
    border-bottom: none;
}

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

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    color: #1a1a1a;
}

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

.contact-text-section {
    flex: 1;
}

.contact-text-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-text-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: #fafafa;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-info {
    background: #fff;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.thanks-info p {
    font-size: 18px;
    color: #c44536;
    font-weight: 600;
}

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

.cta-button-secondary {
    display: inline-block;
    background: #555;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-button-secondary:hover {
    background: #444;
}

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

.legal-article h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-article p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

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

.legal-article li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.legal-article a {
    color: #c44536;
    text-decoration: none;
}

.legal-article a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}