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

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 29px;
    z-index: 999;
}

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

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.intro-block {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.intro-card {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.card-features span {
    font-size: 14px;
    color: #3498db;
    padding: 6px 12px;
    background-color: #e3f2fd;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

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

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.form-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.form-container {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.form-visual {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.form-content {
    flex: 1;
    padding: 50px 60px;
}

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

.service-selection-info {
    background-color: #e8f5e9;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    color: #2e7d32;
    font-weight: 500;
    display: none;
}

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

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

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

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

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

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

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

.trust-block {
    max-width: 1100px;
    margin: 80px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trust-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.trust-item {
    flex: 1;
}

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

.trust-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
    margin-top: 100px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 2;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-disclaimer p {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.cookie-banner.active {
    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;
    font-size: 14px;
    color: #2c3e50;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

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

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.story-text {
    flex: 1;
}

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

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

.story-visual {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-block {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.approach-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-philosophy {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.philosophy-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.value-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

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

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-header h2 {
    font-size: 32px;
    color: #1a1a1a;
}

.detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.detail-content {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.detail-description {
    flex: 2;
}

.detail-description p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
}

.detail-description h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

.detail-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.detail-description li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

.detail-visual {
    flex: 1;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

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

.detail-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.detail-cta:hover {
    background-color: #2980b9;
}

.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
}

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

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

.process-step p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-info-block {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-card > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

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

.contact-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual-card {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

.response-info {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.response-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.response-info p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-preview {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.faq-preview h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.selected-service-display {
    margin-top: 30px;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
    font-size: 16px;
    font-weight: 500;
}

.next-steps {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.next-steps h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

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

.step-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.helpful-links {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.helpful-links h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.helpful-links > p {
    text-align: center;
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.link-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
}

.link-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3498db;
}

.link-card p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
}

.reassurance-block {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

.reassurance-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

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

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

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

.legal-content h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

.legal-content li {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content em {
    color: #7f8c8d;
}

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

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

@media (max-width: 1024px) {
    .hero-card,
    .form-container,
    .story-content,
    .contact-info-block {
        flex-direction: column;
    }

    .trust-features,
    .values-list,
    .process-steps,
    .steps-grid,
    .links-grid {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

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

    .hero-content {
        padding: 40px 30px;
    }

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

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