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

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

.ad-disclosure {
    background: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.magazine-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 2px solid #2c2c2c;
}

.nav-brand {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b4513;
}

.hero-magazine {
    background: #fff;
}

.hero-columns {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-main {
    flex: 2;
    position: relative;
    background: #e8e8e8;
}

.hero-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 32px;
    max-width: 600px;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.hero-overlay p {
    font-size: 18px;
    color: #555;
    font-style: italic;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #f4f4f4;
}

.sidebar-card {
    background: #fff;
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-card.dark {
    background: #2c2c2c;
    color: #fff;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.6;
}

.cta-link {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: #8b4513;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #a0522d;
}

.intro-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.intro-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.5;
}

.intro-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.intro-right {
    flex: 1;
    background: #e8e8e8;
}

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

.philosophy-section {
    background: #f9f9f9;
    padding: 80px 40px;
}

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

.phil-text {
    flex: 1 1 45%;
}

.phil-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.phil-text p {
    font-size: 17px;
    color: #444;
}

.phil-image {
    flex: 1 1 30%;
    background: #ddd;
}

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

.phil-highlight {
    flex: 1 1 100%;
    background: #2c2c2c;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.phil-highlight blockquote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
}

.services-showcase {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

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

.service-feature {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-feature.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #8b4513;
}

.select-service {
    padding: 12px 28px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #444;
}

.service-visual {
    flex: 1;
    background: #e8e8e8;
}

.service-visual img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.approach-section {
    background: #8b4513;
    color: #fff;
    padding: 80px 40px;
}

.approach-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.approach-text {
    flex: 2;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

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

.approach-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 32px;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 15px;
    opacity: 0.9;
}

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

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.testimonials-flow {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: #f9f9f9;
    padding: 32px;
    border-left: 4px solid #8b4513;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card footer {
    font-size: 14px;
    color: #666;
}

.cta-section {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.magazine-form {
    background: #fff;
    padding: 40px;
    border: 2px solid #e0e0e0;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    margin-top: 4px;
}

.checkbox-group a {
    color: #8b4513;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #8b4513;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    background: #fff8e1;
    padding: 40px;
    margin: 80px 40px;
    border-left: 4px solid #f9a825;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.magazine-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

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

.cookie-content a {
    color: #8b4513;
}

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

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

.btn-accept {
    background: #8b4513;
    color: #fff;
}

.btn-accept:hover {
    background: #a0522d;
}

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

.btn-reject:hover {
    background: #888;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 32px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #8b4513;
    margin-top: 20px;
    display: block;
}

.content-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.content-section h1 {
    font-size: 40px;
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-section ul {
    margin: 16px 0 16px 24px;
}

.content-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info {
    background: #f9f9f9;
    padding: 32px;
    margin-top: 40px;
    border-left: 4px solid #8b4513;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
}

.thanks-container {
    max-width: 700px;
    margin: 120px auto;
    padding: 60px 40px;
    text-align: center;
    background: #fff;
    border: 2px solid #e0e0e0;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #8b4513;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.thanks-container .back-link:hover {
    background: #a0522d;
}

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

    .intro-layout,
    .approach-wrap,
    .service-feature,
    .testimonials-flow,
    .footer-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

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

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