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

html {
    scroll-behavior: smooth;
}

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

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f4f4f4;
    letter-spacing: 0.5px;
}

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

.main-nav a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    color: #999;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f4f4f4;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background: #f9f9f9;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #1a1a1a;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f4f4f4;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d4d4d4;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: #d4a574;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: #d4a574;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #c79563;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    flex: 1;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    background: #1a1a1a;
    color: #f4f4f4;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: #2c2c2c;
}

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

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-text {
    flex: 1;
}

.booking-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f4f4f4;
    font-weight: 700;
}

.booking-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d4d4d4;
    line-height: 1.7;
}

.selected-service-display {
    background: #2c2c2c;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    color: #f4f4f4;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #d4a574;
}

.selected-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-top: 0.5rem;
}

.booking-form-container {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background: #c79563;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.testimonials-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.cta-section {
    padding: 5rem 2rem;
    background: #d4a574;
    text-align: center;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    color: #d4d4d4;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: #2c2c2c;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #b4b4b4;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #d4d4d4;
    flex: 1;
}

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

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie:hover {
    background: #c79563;
}

.btn-cookie-secondary {
    background: transparent;
    color: #d4d4d4;
    border: 1px solid #555;
}

.btn-cookie-secondary:hover {
    border-color: #d4a574;
    color: #d4a574;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #f4f4f4;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    color: #d4d4d4;
}

.about-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

.about-split-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.team-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.team-role {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.values-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.values-detail-image {
    flex: 1;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-detail-text {
    flex: 1;
}

.values-detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-detail-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.mission-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.services-intro {
    padding: 5rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 2rem;
    background: #ffffff;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
}

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

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

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

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

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

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

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

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

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

.booking-cta-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    text-align: center;
}

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

.booking-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f4f4f4;
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d4d4d4;
}

.selected-service-info {
    background: #2c2c2c;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #d4a574;
    font-weight: 600;
}

.contact-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #d4a574;
    font-weight: 600;
}

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
}

.contact-note p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 3rem;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.faq-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
    min-height: 60vh;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

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

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.thanks-details {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin: 2rem 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 0.7rem 0 0.7rem 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

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

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff9f0;
    border-radius: 8px;
}

.thanks-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.legal-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #2c2c2c;
    font-weight: 600;
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a4a4a;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.legal-container em {
    color: #777;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-split-reverse,
    .values-detail-split,
    .booking-split,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .hero-image {
        min-height: 50vh;
    }

    .values-container,
    .team-container,
    .testimonials-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.mobile-active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .intro-text h2,
    .about-text h2,
    .values-detail-text h2 {
        font-size: 2rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .service-item {
        flex: 1 1 100%;
    }

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

    .thanks-content {
        padding: 2rem;
    }

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