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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

.ad-label {
    font-size: 12px;
    color: #aaaaaa;
    padding: 4px 10px;
    border: 1px solid #555555;
    border-radius: 3px;
}

.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3e5266 100%);
    padding: 80px 0;
    color: #ffffff;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-text {
    text-align: center;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #f0c24b;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #34495e;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555555;
}

.intro-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    padding: 30px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-image {
    flex: 0 0 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555555;
}

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

.service-select {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.service-select:hover {
    background-color: #34495e;
}

.values-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

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

.value-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

.value-item p {
    font-size: 16px;
    opacity: 0.9;
}

.form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-wrapper > p {
    margin-bottom: 30px;
    color: #555555;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #f0c24b;
}

.cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button-alt {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.main-footer {
    background-color: #0f0f0f;
    color: #cccccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #333333;
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999999;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333333;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

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

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

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

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

.btn-reject {
    background-color: #555555;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #666666;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.philosophy-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.team-section p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
    max-width: 900px;
}

.values-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-detailed h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-layout {
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 450px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    display: block;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555555;
    line-height: 1.8;
}

.service-cta {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.service-cta:hover {
    background-color: #34495e;
}

.pricing-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pricing-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555555;
    line-height: 1.8;
    max-width: 900px;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.visit-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.visit-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.visit-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555555;
    line-height: 1.8;
    max-width: 900px;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
}

.faq-item {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555555;
}

.thanks-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.next-steps {
    padding: 80px 0;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.update-date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .intro-grid,
    .story-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .values-grid,
    .philosophy-grid,
    .values-layout,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}