* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    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: 10px;
}

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

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

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

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

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

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

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

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

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

.ad-disclosure {
    background-color: #d4a574;
    padding: 8px 16px;
    border-radius: 4px;
}

.ad-disclosure span {
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f5f2;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.intro-image {
    flex: 1;
    background-color: #d4cfc9;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

.services-preview {
    background-color: #f8f5f2;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

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

.service-card p {
    font-size: 15px;
    color: #4a5568;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
    margin: 0 24px 24px;
}

.services-cta {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.philosophy-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.philosophy-text h2 {
    font-size: 36px;
    color: #d4a574;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.philosophy-image {
    flex: 1;
    background-color: #d4cfc9;
    overflow: hidden;
}

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

.booking-section {
    background-color: #f8f5f2;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 80px auto;
}

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

.booking-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.booking-content > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.7;
}

.booking-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4cfc9;
    border-radius: 4px;
    font-size: 15px;
    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: #d4a574;
}

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

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

.experience-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.experience-image {
    flex: 1;
    background-color: #d4cfc9;
    overflow: hidden;
}

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

.experience-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.experience-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    color: #d4a574;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #d4a574;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.page-hero {
    background-color: #1a1a1a;
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #d4a574;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: #e8e8e8;
}

.services-detail {
    background-color: #ffffff;
    padding: 80px 40px;
}

.services-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    margin-bottom: 100px;
    gap: 60px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #d4cfc9;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.service-includes {
    list-style: none;
    margin-top: 24px;
}

.service-includes li {
    font-size: 16px;
    color: #2c3e50;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid #e8e3de;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
    font-size: 18px;
}

.booking-cta {
    background-color: #f8f5f2;
    padding: 80px 40px;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

.about-story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

.about-values {
    background-color: #f8f5f2;
    padding: 80px 40px;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-container h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.value-item h3 {
    font-size: 22px;
    color: #d4a574;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.about-team {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-team-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.team-image {
    flex: 1;
    background-color: #d4cfc9;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.about-approach {
    background-color: #f8f5f2;
    padding: 80px 40px;
}

.about-approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-approach-container h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.approach-content {
    display: flex;
    gap: 60px;
}

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-image {
    flex: 1;
    background-color: #d4cfc9;
    overflow: hidden;
    border-radius: 8px;
}

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

.about-location {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-location-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.location-image {
    flex: 1;
    background-color: #d4cfc9;
    overflow: hidden;
    border-radius: 8px;
}

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

.about-cta {
    background-color: #1a1a1a;
    padding: 100px 40px;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 42px;
    color: #d4a574;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-cta-content p {
    font-size: 18px;
    color: #e8e8e8;
    margin-bottom: 36px;
}

.contact-main {
    padding: 80px 40px;
    background-color: #f8f5f2;
}

.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.contact-info-card h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 18px;
    color: #d4a574;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-notes {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.contact-notes h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-notes p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-form-section {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-form-section > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.contact-directions {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-directions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-directions-container h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.directions-text h3 {
    font-size: 24px;
    color: #d4a574;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
}

.directions-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.directions-text ul {
    list-style: none;
    margin-bottom: 32px;
}

.directions-text ul li {
    font-size: 16px;
    color: #2c3e50;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.directions-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f5f2;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-main-text {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.thanks-info {
    margin-bottom: 48px;
}

.thanks-detail {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-next h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.next-step {
    flex: 1;
    max-width: 250px;
}

.next-step h3 {
    font-size: 20px;
    color: #d4a574;
    margin-bottom: 12px;
    font-weight: 600;
}

.next-step p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

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

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

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

.legal-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 48px;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 22px;
    color: #d4a574;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-container a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

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

    .hero-left,
    .intro-text,
    .philosophy-text,
    .experience-text {
        padding: 40px 24px;
    }

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

    .intro-text h2,
    .philosophy-text h2,
    .experience-text h2 {
        font-size: 28px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

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

    .about-story-container,
    .about-team-container,
    .approach-content,
    .about-location-container {
        flex-direction: column;
    }

    .contact-main-container {
        flex-direction: column;
        gap: 40px;
    }

    .next-steps {
        flex-direction: column;
        align-items: center;
    }

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

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