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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #00b894;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #00a383;
}

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

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

.main-nav {
    padding: 2rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #636e72;
    padding: 0.4rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -2px;
}

.hero-text {
    font-size: 1.3rem;
    color: #636e72;
    line-height: 1.7;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

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

.intro-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

.intro-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-wrapper p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #636e72;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem 2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    border-radius: 4px;
}

.service-image {
    width: 100%;
    height: 280px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.service-card p {
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2d3436;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.philosophy-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #636e72;
}

.philosophy-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

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

.form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: center;
}

.selected-service-info {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #636e72;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #dfe6e9;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #2d3436;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    max-width: 500px;
    padding: 3rem;
    background-color: #f8f6f3;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
}

.closing-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 10rem 2rem;
    text-align: center;
}

.closing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.closing-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 2.5rem;
}

.cta-link {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #2d3436;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #000000;
}

.main-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: #b2bec3;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b2bec3;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #b2bec3;
    font-size: 0.9rem;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.thanks-page p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.thanks-page .service-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    margin: 2rem 0;
}

.thanks-page a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2d3436;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-page a:hover {
    background-color: #000000;
}

.services-page-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem 2rem;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.services-page-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #636e72;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem 2rem;
}

.about-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem 2rem;
    text-align: center;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem 2rem;
}

.about-section {
    margin-bottom: 6rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: 500px;
    margin: 3rem 0;
    overflow: hidden;
    border-radius: 4px;
}

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

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 8rem 2rem;
}

.contact-page h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    padding: 2.5rem;
    background-color: #f8f6f3;
    border-radius: 4px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 0.8rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 8rem 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.legal-page p,
.legal-page ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-image {
        height: 400px;
    }

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

    .philosophy-section {
        flex-direction: column;
    }

    .philosophy-image {
        height: 400px;
    }

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

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