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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 28px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 12px;
    color: #888888;
    padding: 6px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
}

.hero-minimal {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-content {
    text-align: center;
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

.intro-statement {
    background-color: #f4f1ea;
    padding: 120px 48px;
    margin: 100px 0;
}

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

.lead-text {
    font-size: 28px;
    line-height: 1.7;
    color: #2a2a2a;
    text-align: center;
    font-weight: 300;
}

.approach-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 48px;
}

.approach-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

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

.text-link:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

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

.approach-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-preview {
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 48px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 28px 28px 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 28px 24px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 32px;
    font-weight: 300;
    color: #d4af37;
    margin: 0 28px 20px;
    display: block;
}

.service-card .select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.service-card .select-service:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.why-bristol {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 120px 48px;
    margin: 100px 0;
}

.bristol-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bristol-content h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
}

.bristol-features {
    display: flex;
    gap: 60px;
}

.feature-block {
    flex: 1;
}

.feature-block h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #d4af37;
}

.feature-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #c8c8c8;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 48px;
    line-height: 1.7;
}

.main-form {
    background-color: #ffffff;
    padding: 48px;
    border: 1px solid #e8e8e8;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    color: #2a2a2a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2a2a2a;
    background-color: #fafaf8;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 18px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

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

.disclaimer-section {
    background-color: #f4f1ea;
    padding: 60px 48px;
    margin: 100px 0 0 0;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #c8c8c8;
    padding: 80px 48px 40px;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #c8c8c8;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

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

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

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

.thanks-container h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.thanks-container .service-detail {
    background-color: #f4f1ea;
    padding: 32px;
    margin: 40px 0;
    border-left: 3px solid #d4af37;
}

.thanks-container .service-detail strong {
    color: #1a1a1a;
    font-size: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    color: #d4af37;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

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

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

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

.legal-page ul {
    margin: 20px 0 20px 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 48px;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-block {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    border: 1px solid #e8e8e8;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-block strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

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

    .bristol-features {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }

    .nav-links {
        gap: 24px;
        font-size: 14px;
    }

    .ad-label {
        display: none;
    }

    .hero-minimal {
        padding: 0 24px;
        margin: 40px auto;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .intro-statement {
        padding: 60px 24px;
    }

    .lead-text {
        font-size: 20px;
    }

    .services-preview,
    .approach-section,
    .form-section {
        padding: 0 24px;
    }

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