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

.ad-notice {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #8e44ad;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-card {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.btn-primary {
    display: inline-block;
    background: #8e44ad;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #732d91;
}

.btn-secondary {
    display: inline-block;
    background: #34495e;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
}

.intro-card {
    background: #fff;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.card-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-block {
    flex: 1.2;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.text-block sup a {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 600;
}

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

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

.problem-reveal {
    background: #f4f1f8;
    padding: 80px 20px;
    margin: 80px 0;
}

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

.narrow-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.insight-card {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.insight-item {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.insight-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.insight-item sup a {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 600;
}

.trust-section {
    background: #34495e;
    padding: 80px 20px;
    margin: 80px 0;
}

.testimonial-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 36px;
    border-radius: 8px;
    color: #ecf0f1;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 15px;
    font-weight: 600;
    color: #bdc3c7;
}

.services-grid {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header p {
    font-size: 19px;
    color: #555;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8e44ad;
    margin-bottom: 24px;
}

.btn-select {
    background: #8e44ad;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background: #732d91;
}

.form-section {
    background: #f4f1f8;
    padding: 80px 20px;
    margin: 80px 0;
}

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

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

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.service-display {
    background: #f4f1f8;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
    display: none;
}

.service-display.active {
    display: block;
}

.btn-submit {
    width: 100%;
    background: #8e44ad;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #732d91;
}

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

.cta-content h2 {
    color: #ecf0f1;
    font-size: 38px;
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.4;
}

.main-footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column li {
    font-size: 15px;
    line-height: 1.8;
    color: #95a5a6;
}

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

.footer-column a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ecf0f1;
}

.references {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

.references h4 {
    color: #ecf0f1;
    font-size: 18px;
    margin-bottom: 16px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #95a5a6;
}

.references a {
    color: #8e44ad;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.disclaimer {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 24px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 6px;
    border-left: 4px solid #8e44ad;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

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

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

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

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

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

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

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

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-header {
    background: linear-gradient(135deg, #8e44ad 0%, #34495e 100%);
    padding: 100px 20px;
    text-align: center;
}

.page-header-content h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header-content p {
    color: #ecf0f1;
    font-size: 20px;
}

.about-story {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

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

.story-text {
    flex: 1;
}

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

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

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

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

.approach-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.approach-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.approach-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-team {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.team-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.8;
}

.team-statement {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-values {
    background: #2c3e50;
    padding: 80px 20px;
}

.values-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #ecf0f1;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8e44ad;
}

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

.about-cta {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.cta-box {
    background: linear-gradient(135deg, #8e44ad 0%, #732d91 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    color: #ecf0f1;
    font-size: 18px;
    margin-bottom: 32px;
}

.services-detail {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.services-intro p {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.detail-content h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.detail-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8e44ad;
    font-weight: 700;
}

.services-faq {
    background: #f4f1f8;
    padding: 80px 20px;
    margin: 80px 0;
}

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

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

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

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.services-cta {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.cta-simple {
    background: #34495e;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-simple h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 28px;
}

.contact-page {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
}

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

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

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-info-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.contact-map-section {
    flex: 1;
    background: #e8e8e8;
    min-height: 500px;
    border-radius: 8px;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
}

.thanks-content {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-summary {
    background: #f4f1f8;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: left;
}

.thanks-summary h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-summary p {
    font-size: 16px;
    margin-bottom: 8px;
}

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

.contact-directions {
    background: #f4f1f8;
    padding: 80px 20px;
    margin: 80px 0;
}

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

.directions-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.direction-option {
    flex: 1;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.direction-option h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8e44ad;
}

.direction-option p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.note-box {
    background: #34495e;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #8e44ad;
}

.note-box p {
    font-size: 17px;
    color: #ecf0f1;
    line-height: 1.7;
    margin: 0;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-container {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-container h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

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

.legal-container ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.legal-container ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: #8e44ad;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 107px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-card {
        flex-direction: column;
        gap: 30px;
    }

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

    .card-wrapper {
        flex-direction: column;
        gap: 30px;
    }

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

    .testimonial-cards {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
    }

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

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

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

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

    .values-list {
        flex-direction: column;
    }
}