* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a:hover {
    color: #2d3748;
}

.hero-visual {
    width: 100%;
    height: 90vh;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.story-intro {
    padding: 80px 20px;
    background-color: #f7f9fc;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-lead {
    font-size: 24px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 400;
}

.story-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.visual-reveal {
    padding: 0;
}

.reveal-block {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.reveal-image {
    flex: 1;
    background-color: #e8e8e8;
}

.reveal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reveal-text {
    flex: 1;
    padding: 60px 80px;
}

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

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

.image-statement {
    position: relative;
    height: 70vh;
    background-color: #2c3e50;
}

.image-statement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.statement-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.statement-overlay blockquote {
    font-size: 42px;
    color: #ffffff;
    font-weight: 300;
    font-style: italic;
    max-width: 800px;
}

.problem-insight {
    padding: 100px 20px;
    background-color: #ffffff;
}

.insight-container {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.insight-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

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

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.trust-visual {
    padding: 0;
    background-color: #f7f9fc;
}

.trust-content {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-text-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.trust-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.trust-image-block {
    flex: 1;
    background-color: #d0d0d0;
}

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

.testimonial-inline {
    padding: 100px 20px;
    background-color: #2c3e50;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 26px;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 18px;
    color: #cbd5e0;
    text-align: right;
}

.visual-benefit {
    padding: 0;
}

.benefit-layout {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-layout img {
    flex: 1;
    width: 50%;
    height: 600px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.benefit-content {
    flex: 1;
    padding: 60px 70px;
}

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

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

.benefit-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 20px;
}

.services-reveal {
    padding: 100px 20px;
    background-color: #f7f9fc;
}

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

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

.services-intro p {
    font-size: 18px;
    color: #4a5568;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-visual {
    width: 100%;
    height: 220px;
    background-color: #e0e0e0;
}

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

.service-details {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #4a5568;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #1a252f;
}

.site-footer {
    background-color: #1a1a1a;
    color: #e2e8f0;
    padding: 60px 40px 20px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2d3748;
    border-radius: 6px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #38a169;
}

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

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

.about-hero {
    padding: 100px 20px 60px;
    background-color: #f7f9fc;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    color: #4a5568;
}

.about-story {
    padding: 80px 20px;
}

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

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

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

.about-text {
    flex: 1;
}

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

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

.about-approach {
    padding: 80px 20px;
    background-color: #f7f9fc;
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-block {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.about-team {
    padding: 80px 20px;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    font-size: 16px;
    color: #718096;
    margin-bottom: 12px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.about-values {
    padding: 80px 20px;
    background-color: #f7f9fc;
}

.values-layout {
    max-width: 1000px;
    margin: 0 auto;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.services-header {
    padding: 100px 20px 60px;
    background-color: #f7f9fc;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 20px;
    color: #4a5568;
}

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

.services-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

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

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

.service-includes {
    list-style: none;
    margin: 25px 0;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.service-detail-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0;
}

.service-cta {
    display: inline-block;
    padding: 14px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1a252f;
}

.services-cta-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
}

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

.services-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cta-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

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

.cta-button:hover {
    background-color: #1a252f;
}

.contact-header {
    padding: 100px 20px 60px;
    background-color: #f7f9fc;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 20px;
    color: #4a5568;
}

.contact-main {
    padding: 80px 20px;
}

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

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

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

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

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

.contact-email {
    color: #4a5568;
    cursor: default;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f7f9fc;
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.thanks-section {
    padding: 120px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 15px;
}

.thanks-detail {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-info {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

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

.thanks-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-button:hover {
    background-color: #1a252f;
}

.thanks-button-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-button-secondary:hover {
    background-color: #f7f9fc;
}

.legal-page {
    padding: 80px 20px;
    min-height: 60vh;
}

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

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

.legal-date {
    font-size: 16px;
    color: #718096;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.contact-link {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .reveal-block,
    .trust-content,
    .benefit-layout,
    .about-container,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .reveal-text,
    .trust-text-block,
    .benefit-content {
        padding: 40px 30px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

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

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

    .thanks-button,
    .thanks-button-secondary {
        width: 100%;
    }
}