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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    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;
    margin: 0;
}

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

.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: #27ae60;
    color: #ffffff;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.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: #e74c3c;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ecf0f1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 30px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.intro-flow {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.intro-lead {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
}

.story-visual {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #f8f9fa;
}

.story-left,
.story-right {
    flex: 1;
    padding: 60px;
}

.story-left {
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
}

.story-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.problem-reveal {
    padding: 120px 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.problem-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.problem-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-visual {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.insight-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

.insight-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.insight-overlay h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-overlay p {
    font-size: 20px;
    line-height: 1.7;
}

.trust-elements {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.trust-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.testimonials-inline {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.testimonial-item {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #bdc3c7;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.benefits-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.benefits-visual {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.benefit-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.benefit-block h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.services-pricing {
    padding: 120px 30px;
    background-color: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 350px;
    max-width: 400px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 25px;
}

.btn-select {
    padding: 14px 32px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

.order-form-section {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #d5f4e6;
    border-radius: 6px;
    color: #27ae60;
}

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

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

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

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

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

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

.final-cta {
    padding: 100px 30px;
    background-color: #2c3e50;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

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

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.6;
    color: #bdc3c7;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    margin-top: 100px;
    padding: 80px 30px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

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

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

.about-story {
    padding: 100px 30px;
    background-color: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.team-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.team-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.team-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.team-overlay h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.team-overlay p {
    font-size: 18px;
    line-height: 1.7;
}

.process-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.mission-section {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

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

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.services-detailed {
    padding: 80px 30px;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.service-price-display {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin: 25px 0;
}

.btn-service {
    padding: 14px 32px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

.contact-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.visit-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.visit-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.visit-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.thanks-page {
    padding: 150px 30px 100px;
    min-height: 70vh;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 44px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 30px;
}

.service-confirmation {
    font-size: 18px;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #fef5e7;
    border-radius: 6px;
}

.thanks-next {
    margin: 40px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-next ul {
    list-style-position: inside;
}

.thanks-next li {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

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

.legal-page h1 {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 42px;
    color: #2c3e50;
}

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

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

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

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

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

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .intro-lead {
        font-size: 24px;
    }

    .story-visual {
        flex-direction: column;
    }

    .story-left,
    .story-right {
        padding: 40px 20px;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-item.reverse {
        flex-direction: column;
    }

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

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

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

    .contact-info-wrapper {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}