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

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

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

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

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #d4a574;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-label {
    background-color: rgba(212, 165, 116, 0.2);
    color: #d4a574;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

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

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-left p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta-hero {
    display: inline-block;
    background-color: #1a1a1a;
    color: #f5f2ed;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #c8b89f;
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 3rem;
    gap: 4rem;
}

.intro-split.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

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

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

.intro-text {
    flex: 1;
    padding: 0 2rem;
}

.intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.services-grid {
    padding: 6rem 3rem;
    background-color: #f5f2ed;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.grid-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    width: calc(33.333% - 2rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    color: #d4a574;
    font-weight: 600;
    margin: 0 1.5rem 1rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-split {
    display: flex;
    min-height: 70vh;
}

.cta-left {
    flex: 1;
    background-color: #d4a574;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-left p {
    font-size: 1.1rem;
    color: #2c2c2c;
    line-height: 1.8;
}

.cta-right {
    flex: 1;
    background-color: #f5f2ed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.form-container {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
}

.form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 500;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.3rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-container textarea {
    resize: vertical;
}

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

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

.trust-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 400;
}

.trust-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.trust-item p {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 3rem;
    background-color: #f0ebe3;
}

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

.footer {
    background-color: #1a1a1a;
    color: #e8e8e8;
    padding: 4rem 3rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #d4a574;
    font-weight: 500;
}

.footer-col p {
    font-size: 0.9rem;
    color: #b8b8b8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #e8e8e8;
    padding: 1.8rem 2rem;
    z-index: 9999;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.about-hero {
    background-color: #1a1a1a;
    padding: 6rem 3rem 5rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #b8b8b8;
}

.about-split {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    align-items: center;
    background-color: #fafaf8;
}

.about-split.reverse {
    flex-direction: row-reverse;
    background-color: #f5f2ed;
}

.about-text {
    flex: 1;
    padding: 0 2rem;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.about-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    background-color: #d8cfc0;
}

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

.values-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 400;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 2rem;
    background-color: #f5f2ed;
    border-radius: 4px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 3rem;
    background-color: #f5f2ed;
}

.team-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

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

.team-member {
    flex: 1;
    min-width: 240px;
    max-width: 260px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4a574;
    font-weight: 500;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.cta-about {
    padding: 5rem 3rem;
    background-color: #d4a574;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-content p {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #f5f2ed;
    padding: 1.1rem 3rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #2c2c2c;
}

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

.services-hero h1 {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.services-hero p {
    font-size: 1.15rem;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    align-items: center;
    background-color: #fafaf8;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: #f5f2ed;
}

.service-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    background-color: #d8cfc0;
}

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

.service-info {
    flex: 1;
    padding: 0 2rem;
}

.service-info h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-info > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #666;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-section {
    padding: 6rem 3rem;
    background-color: #f5f2ed;
}

.form-container-services {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 6px;
}

.form-container-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
    text-align: center;
}

.form-container-services > p {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

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

.contact-hero h1 {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #b8b8b8;
}

.contact-split {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    background-color: #fafaf8;
}

.contact-info {
    flex: 1;
    padding: 0 2rem;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #d4a574;
    font-weight: 500;
}

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

.contact-note {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    background-color: #d8cfc0;
}

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

.contact-details {
    padding: 6rem 3rem;
    background-color: #f5f2ed;
}

.contact-details h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 400;
}

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

.detail-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.detail-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.thanks-container {
    padding: 5rem 3rem;
    min-height: 60vh;
    background-color: #fafaf8;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-info {
    background-color: #f5f2ed;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 4rem;
}

.thanks-info p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: left;
}

.step h3 {
    font-size: 1.3rem;
    color: #d4a574;
    margin-bottom: 1rem;
    font-weight: 500;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 3rem;
    background-color: #fafaf8;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-intro {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    color: #d4a574;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.legal-container p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1.2rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 0.98rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.cookie-table th {
    background-color: #f5f2ed;
    color: #1a1a1a;
    font-weight: 600;
}

.cookie-table td {
    color: #666;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .intro-split,
    .about-split,
    .cta-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .about-split.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .service-card {
        width: 100%;
    }

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