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

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

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-label {
    color: #999;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #d4a574;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f5f0;
}

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #e8e2d8;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.services-split {
    background-color: #f8f5f0;
}

.service-card-left,
.service-card-right {
    display: flex;
    min-height: 450px;
}

.service-card-left {
    flex-direction: row;
}

.service-card-right {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.form-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

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

.form-container h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container p {
    color: #d4a574;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2c2c2c;
    color: #ffffff;
    font-size: 1rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #d4a574;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.values-split {
    display: flex;
    min-height: 500px;
}

.values-left {
    flex: 1;
    background-color: #e8e2d8;
}

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.values-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.values-right p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f0ebe5;
    border-top: 1px solid #d4a574;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #999;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.about-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    color: #d4a574;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.story-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.story-split.reverse {
    flex-direction: row-reverse;
}

.story-left,
.story-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-left h2,
.story-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-left p,
.story-right p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-left img,
.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f8f5f0;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 350px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: #f8f5f0;
    border-left: 4px solid #d4a574;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-hero {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero p {
    color: #d4a574;
    font-size: 1.2rem;
}

.services-detail {
    background-color: #f8f5f0;
}

.service-detail-card {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
    margin-bottom: 2rem;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    color: #d4a574;
    font-weight: 600;
    margin: 1.5rem 0;
}

.contact-hero {
    background-color: #1a1a1a;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    color: #d4a574;
    font-size: 1.2rem;
}

.contact-split {
    display: flex;
    min-height: 550px;
    background-color: #f8f5f0;
}

.contact-info {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.email-text {
    color: #4a4a4a;
    font-weight: 500;
    user-select: text;
    cursor: text;
}

.info-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.contact-image {
    flex: 1;
    background-color: #e8e2d8;
}

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

.location-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f5f0;
    padding: 5rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c09563;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.update-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .service-card-left,
    .service-card-right,
    .values-split,
    .story-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .team-grid,
    .values-list {
        flex-direction: column;
    }

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