* {
    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: #333;
    background: #fff;
}

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

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-label {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.nav a:hover {
    color: #c9a05f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #c9a05f;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #b08f4f;
}

.cookie-btn.reject {
    background: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #444;
}

.hero-section {
    position: relative;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-primary {
    background: #c9a05f;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #b08f4f;
}

.intro-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.problem-section {
    padding: 80px 0;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

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

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

.text-link {
    color: #c9a05f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: #b08f4f;
}

.services-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-features span {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
}

.select-service-btn {
    width: 100%;
    background: #c9a05f;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 20px;
}

.trust-icon {
    font-size: 48px;
    color: #c9a05f;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-card p {
    color: #666;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 35px;
    border-left: 4px solid #c9a05f;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.pricing-reveal-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    padding: 40px 30px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #c9a05f;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.pricing-features li:before {
    content: "✓ ";
    color: #c9a05f;
    font-weight: bold;
    margin-right: 8px;
}

.form-section {
    padding: 80px 0;
    background: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

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

.submit-btn {
    background: #c9a05f;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-left: 4px solid #c9a05f;
    border-radius: 4px;
}

.disclaimer-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.disclaimer-box p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: #aaa;
    line-height: 1.7;
    font-size: 14px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, #c9a05f 0%, #a68550 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

.about-intro {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.process-section {
    padding: 80px 0;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    flex: 1;
    min-width: 240px;
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 8px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #c9a05f;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.team-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

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

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.commitment-section {
    padding: 80px 0;
}

.commitment-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border: 2px solid #c9a05f;
    border-radius: 8px;
}

.commitment-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.commitment-list li:before {
    content: "✓ ";
    color: #c9a05f;
    font-weight: bold;
    font-size: 20px;
    margin-right: 12px;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #c9a05f;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.detail-cta-btn {
    background: #c9a05f;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.detail-cta-btn:hover {
    background: #b08f4f;
}

.quality-guarantee {
    padding: 80px 0;
    background: #f9f9f9;
}

.quality-guarantee h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.guarantee-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.guarantee-item p {
    color: #666;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-column {
    flex: 1;
}

.contact-info-column h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-info-block p {
    color: #666;
    line-height: 1.7;
}

.email-text {
    font-weight: 600;
    color: #333;
    user-select: text;
}

.email-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.contact-image-column {
    flex: 1;
}

.contact-visual {
    width: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
}

.contact-note-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.contact-note-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-note-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.faq-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.thanks-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 72px;
    color: #4CAF50;
    margin-bottom: 20px;
}

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #f0f8f0;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.service-selected {
    color: #2e7d32;
    font-weight: 600;
}

.thanks-info {
    text-align: left;
    margin: 40px 0;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.next-steps li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.next-steps li:before {
    content: "→ ";
    color: #c9a05f;
    font-weight: bold;
    margin-right: 10px;
}

.thanks-contact {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 4px;
    margin: 30px 0;
}

.thanks-contact p {
    color: #666;
    margin-bottom: 8px;
}

.contact-email {
    font-weight: 600;
    color: #333;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #c9a05f;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #b08f4f;
}

.btn-secondary {
    background: #555;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #444;
}

.legal-page {
    padding: 60px 0;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.last-updated {
    color: #888;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #444;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.legal-content a {
    color: #c9a05f;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th {
    background: #f5f5f5;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .story-layout,
    .about-layout,
    .service-detail-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-cards,
    .pricing-grid {
        justify-content: center;
    }

    .service-card,
    .pricing-card {
        max-width: 100%;
    }

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