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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #d4af37;
    color: #1a1a1a;
}

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

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

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

.nav-magazine {
    background: #fff;
    border-bottom: 3px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-logo {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: -1px;
}

.nav-ad-notice {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 40px;
    padding: 12px 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', sans-serif;
    transition: color 0.3s;
}

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

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-article {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c2c2c;
}

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

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

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

.hero-subtitle {
    font-size: 22px;
    font-style: italic;
    opacity: 0.9;
}

.intro-columns {
    display: flex;
    gap: 60px;
    padding: 60px 40px;
    background: #fff;
}

.column-narrow {
    flex: 1;
}

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

.column-narrow p {
    font-size: 18px;
    color: #3a3a3a;
}

.column-wide {
    flex: 1.5;
}

.column-wide img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    background-color: #e8e8e8;
}

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.content-asymmetric {
    display: flex;
    gap: 80px;
    padding: 80px 40px;
    background: #f5f5f5;
    align-items: flex-start;
}

.text-block-offset {
    flex: 1.3;
    padding-top: 40px;
}

.text-block-offset h3 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-block-offset p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.image-block-float {
    flex: 1;
}

.image-block-float img {
    width: 100%;
    height: auto;
    background-color: #d0d0d0;
}

.grid-magazine {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 40px;
    background: #fff;
}

.grid-item {
    background: #fafafa;
    padding: 30px;
}

.grid-span-2 {
    grid-column: span 2;
}

.grid-item h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.grid-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.grid-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.grid-item img {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    color: #d4af37;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.inline-cta:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.feature-box {
    display: flex;
    gap: 50px;
    padding: 70px 40px;
    background: #2c2c2c;
    color: #fff;
}

.feature-content {
    flex: 2;
}

.feature-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
}

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

.feature-sidebar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
}

.feature-sidebar h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #d4af37;
}

.feature-sidebar ul {
    list-style: none;
}

.feature-sidebar li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.services-preview {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.services-preview h2 {
    font-size: 44px;
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    max-width: 340px;
    background: #f5f5f5;
    padding: 40px 30px;
    text-align: left;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: background 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.full-width-content {
    background: #f5f5f5;
    padding: 70px 40px;
}

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

.content-inner h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

.content-inner p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.testimonial-section {
    display: flex;
    gap: 40px;
    padding: 60px 40px;
    background: #fff;
}

.testimonial {
    flex: 1;
    padding: 35px;
    background: #fafafa;
    border-left: 4px solid #d4af37;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.cta-magazine {
    display: flex;
    gap: 0;
    margin: 60px 40px;
}

.cta-left {
    flex: 1;
    background-color: #e0e0e0;
}

.cta-left img {
    width: 100%;
    height: 100%;
}

.cta-right {
    flex: 1;
    padding: 60px 50px;
    background: #2c2c2c;
    color: #fff;
}

.cta-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.cta-right p {
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    font-size: 15px;
    margin-bottom: -12px;
    color: #d4af37;
}

.contact-form select,
.contact-form input {
    padding: 14px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
}

.contact-form select option {
    background: #1a1a1a;
    color: #fff;
}

.submit-btn {
    padding: 16px;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 40px;
    background: #e8e8e8;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.footer-magazine {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    background: #fff;
    padding: 50px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background: #f5f5f5;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #2a2a2a;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4af37;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #d4af37;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: #d4af37;
}

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

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

.contact-info-box {
    background: #f5f5f5;
    padding: 40px;
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    font-size: 15px;
    color: #d4af37;
    margin-bottom: 8px;
}

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

.thanks-section {
    display: flex;
    gap: 60px;
    padding: 100px 40px;
    align-items: center;
    background: #fff;
}

.thanks-content {
    flex: 1;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.service-confirmation {
    background: #f5f5f5;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #d4af37;
}

.service-confirmation p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.service-confirmation p:last-child {
    margin-bottom: 0;
}

.thanks-note {
    font-size: 17px;
    margin-bottom: 35px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .intro-columns,
    .content-asymmetric,
    .feature-box,
    .services-cards,
    .testimonial-section,
    .cta-magazine,
    .footer-columns,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .grid-magazine {
        grid-template-columns: 1fr;
    }

    .grid-span-2 {
        grid-column: span 1;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

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

    .service-detail {
        padding: 30px 20px;
    }
}