* {
    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: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 36px;
    z-index: 99;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-funnel {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.hero-content {
    padding: 80px 20px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.hero-visual {
    width: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #d4a574;
}

.hook-section {
    padding: 80px 20px;
    background-color: #f8f4ef;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.hook-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.hook-section p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.story-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.story-image {
    flex: 1;
    min-width: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #d4a574;
}

.story-text {
    flex: 1;
    padding: 40px;
}

.story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.insight-section {
    padding: 80px 20px;
    background-color: #34495e;
    color: #ecf0f1;
}

.insight-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.insight-card {
    flex: 1;
    text-align: center;
    background-color: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 12px;
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.insight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.services-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 3px solid #8b4513;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #8b4513;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #6d3410;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #f8f4ef;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    border-left: 4px solid #8b4513;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f4ef;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #f8f4ef;
}

.trust-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.05rem;
    line-height: 1.6;
}

.trust-item strong {
    color: #8b4513;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    gap: 30px;
}

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

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-header {
    padding: 80px 20px 60px;
    background-color: #f8f4ef;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.about-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.about-block {
    margin-bottom: 60px;
}

.about-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image-full {
    margin: 60px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.about-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #d4a574;
}

.about-split {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-split-text {
    flex: 1;
}

.about-split-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-split-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.about-split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.about-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #d4a574;
}

.team-section {
    margin-top: 80px;
    padding: 60px 0;
    background-color: #f8f4ef;
    border-radius: 12px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #d4a574;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.services-detail {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-card-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
}

.service-card-detail.featured-detail {
    border: 3px solid #8b4513;
}

.badge-large {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #8b4513;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 2;
}

.service-image-large {
    flex: 1;
    min-height: 400px;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #d4a574;
}

.service-info {
    flex: 1;
    padding: 50px;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 25px;
}

.service-info p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 35px;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
    color: #4a5568;
}

.service-features li::before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.btn-order {
    display: inline-block;
    padding: 16px 36px;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-order:hover {
    background-color: #6d3410;
}

.faq-section {
    padding: 80px 20px;
    background-color: #f8f4ef;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.info-item strong {
    display: block;
    font-size: 1.2rem;
    color: #8b4513;
    margin-bottom: 10px;
}

.info-item p {
    margin: 0;
}

.contact-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.hours-highlight {
    padding: 60px 20px;
    background-color: #f8f4ef;
}

.hours-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.hours-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.thanks-container {
    padding: 100px 20px;
    background-color: #f8f4ef;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.order-summary {
    background-color: #f8f4ef;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.order-summary p {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #4a5568;
}

.thanks-next {
    margin: 50px 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #8b4513;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    flex: 1;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-tips {
    background-color: #f8f4ef;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-tips h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-tips p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-tips a {
    color: #8b4513;
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #8b4513;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #f8f4ef;
}

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

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

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

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

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

    .service-cards {
        grid-template-columns: 1fr;
    }

    .about-split {
        flex-direction: column;
    }

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

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

    .service-image-large {
        min-height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}