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

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

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.3px;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #c9a961;
    padding: 25px 5%;
}

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

.logo-area {
    flex: 1;
    min-width: 250px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
    font-family: 'Georgia', serif;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: #c9a961;
    border-bottom-color: #c9a961;
}

.hero-magazine {
    background-color: #f5f5f5;
    padding: 60px 5%;
}

.hero-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text-column {
    flex: 1;
    min-width: 350px;
}

.hero-headline {
    font-size: 42px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: normal;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

.cta-primary:hover {
    background-color: #b39550;
}

.hero-image-column {
    flex: 1;
    min-width: 350px;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-statement {
    background-color: #2c2c2c;
    padding: 50px 5%;
}

.statement-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.statement-text {
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    font-style: italic;
}

.content-grid-magazine {
    padding: 70px 5%;
    background-color: #ffffff;
}

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

.grid-main-feature {
    flex: 2;
    min-width: 500px;
}

.grid-main-feature img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.grid-main-feature h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.grid-main-feature p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.grid-sidebar-items {
    flex: 1;
    min-width: 280px;
}

.sidebar-box {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid #c9a961;
}

.sidebar-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.sector-list {
    list-style: none;
    padding-left: 0;
}

.sector-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #4a4a4a;
}

.sector-list li:last-child {
    border-bottom: none;
}

.highlight-box {
    background-color: #c9a961;
    border-left-color: #1a1a1a;
}

.highlight-box h4,
.highlight-box p {
    color: #ffffff;
}

.services-highlight {
    background-color: #f5f5f5;
    padding: 70px 5%;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.section-description {
    font-size: 18px;
    color: #666;
}

.services-magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-magazine {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

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

.service-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    color: #c9a961;
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 3px;
}

.btn-select-service:hover {
    background-color: #333333;
}

.form-section {
    background-color: #ffffff;
    padding: 70px 5%;
}

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

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

.form-intro-text h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.form-intro-text p {
    font-size: 17px;
    color: #666;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-family: 'Georgia', serif;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #2c2c2c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #c9a961;
    border-color: #c9a961;
}

.btn-submit-form {
    background-color: #c9a961;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 3px;
}

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

.additional-content-magazine {
    padding: 70px 5%;
    background-color: #f5f5f5;
}

.content-columns-two {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.column-content {
    flex: 1;
    min-width: 350px;
}

.column-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.column-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.column-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.disclaimer-section {
    background-color: #2c2c2c;
    padding: 50px 5%;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    border: 2px solid #c9a961;
    background-color: #3a3a3a;
}

.disclaimer-container h4 {
    font-size: 22px;
    color: #c9a961;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.disclaimer-container p {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
}

.footer-magazine {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 50px 5% 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c9a961;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    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: 20px;
    flex-wrap: wrap;
}

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

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

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

.btn-cookie.accept {
    background-color: #c9a961;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #5a5a5a;
}

@media (max-width: 768px) {
    .logo {
        font-size: 28px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 16px;
    }

    .grid-main-feature {
        min-width: 100%;
    }

    .grid-sidebar-items {
        min-width: 100%;
    }

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

    .section-header-centered h2 {
        font-size: 28px;
    }
}