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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cookie-accept {
    background: #d4af37;
    color: #000;
}

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

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

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

.top-bar {
    background: #1a1a1a;
    color: #999;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid #333;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
}

.ad-notice {
    font-style: italic;
}

header {
    background: #ffffff;
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    gap: 40px;
}

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

.hero-main-image {
    width: 100%;
    height: 500px;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.hero-card {
    background: #f8f8f8;
    padding: 25px;
    border-left: 4px solid #d4af37;
}

.hero-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.hero-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.section-header {
    margin-bottom: 50px;
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
}

.multi-column {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.column-wide {
    flex: 2;
}

.column-narrow {
    flex: 1;
}

.content-block {
    margin-bottom: 35px;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.inline-image {
    width: 100%;
    height: 300px;
    background: #e8e8e8;
    margin: 25px 0;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    background: #fafafa;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.service-select {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    transition: background 0.3s;
}

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

.testimonial-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background: #f8f8f8;
    padding: 30px;
    border-top: 3px solid #d4af37;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    background: #1a1a1a;
    color: #fff;
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #ccc;
}

.form-wrapper {
    flex: 1;
    background: #fff;
    padding: 40px;
    color: #1a1a1a;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

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

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

.submit-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.about-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.about-layout {
    display: flex;
    gap: 50px;
}

.about-content {
    flex: 1.5;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: #e8e8e8;
    min-height: 400px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    background: #f8f8f8;
}

.reference-list h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.reference-list ol {
    list-style-position: inside;
}

.reference-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
    color: #555;
}

.reference-list a {
    color: #d4af37;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #fff8e6;
    border-left: 4px solid #d4af37;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
    color: #444;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.thanks-page p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-home {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #333;
}

@media (max-width: 968px) {
    .hero-magazine,
    .multi-column,
    .form-container,
    .about-layout,
    .footer-content {
        flex-direction: column;
    }

    nav ul {
        gap: 20px;
    }

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

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