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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --background-light: #f8f9fa;
    --background-card: #ffffff;
    --border-color: #e0e6ed;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header {
    background-color: var(--background-card);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hero-section {
    padding: 60px 0;
    background-color: var(--background-card);
}

.hero-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-content {
    flex: 1 1 450px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1 1 450px;
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--background-card);
}

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

.intro-card {
    flex: 1 1 300px;
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.intro-card p {
    color: var(--text-light);
    font-size: 16px;
}

.services-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 350px;
    background-color: var(--background-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: var(--border-color);
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: scale(1.02);
}

.form-section {
    padding: 80px 0;
    background-color: var(--background-card);
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.form-card {
    flex: 1 1 500px;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.form-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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: var(--secondary-color);
}

.btn-submit {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.form-benefits {
    flex: 1 1 350px;
}

.form-benefits h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1 1 320px;
    background-color: var(--background-card);
    padding: 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--background-card);
}

.disclaimer-card {
    background-color: #fff8e1;
    padding: 32px;
    border-radius: 10px;
    border: 2px solid #ffe082;
}

.disclaimer-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer-card p {
    font-size: 14px;
    color: #5d4037;
    line-height: 1.8;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

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

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

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

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 500px;
    font-size: 14px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-accept:hover {
    transform: scale(1.05);
}

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

.btn-reject:hover {
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

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

.story-section {
    padding: 80px 0;
    background-color: var(--background-card);
}

.story-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.story-image {
    flex: 1 1 400px;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.story-content {
    flex: 1 1 450px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 280px;
    background-color: var(--background-card);
    padding: 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: var(--background-card);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.experience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.experience-card {
    flex: 1 1 250px;
    background-color: var(--background-light);
    padding: 40px 32px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.experience-label {
    font-size: 16px;
    color: var(--text-light);
}

.team-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.approach-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.approach-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.approach-content {
    flex: 1 1 450px;
}

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.approach-image {
    flex: 1 1 400px;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 0;
    background-color: var(--background-card);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-detail-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--background-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-detail-image {
    flex: 1 1 400px;
    background-color: var(--border-color);
}

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

.service-detail-content {
    flex: 1 1 450px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.services-cta-section {
    padding: 60px 0;
    background-color: var(--background-card);
}

.contact-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.contact-info-card {
    flex: 1 1 450px;
    background-color: var(--background-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-email {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-image-card {
    flex: 1 1 400px;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-details-section {
    padding: 60px 0;
    background-color: var(--background-card);
}

.details-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.detail-card {
    flex: 1 1 320px;
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.detail-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.detail-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.map-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.map-card {
    background-color: var(--background-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.map-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-placeholder {
    background-color: var(--border-color);
    padding: 100px 40px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

.thanks-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.thanks-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-card);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.step-card {
    flex: 1 1 250px;
    display: flex;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-service-info {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-dark);
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
}

.additional-info-section {
    padding: 60px 0;
    background-color: var(--background-card);
}

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

.info-card {
    flex: 1 1 300px;
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-card);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-block {
    margin-bottom: 36px;
}

.legal-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-block h3 {
    font-size: 20px;
    margin: 20px 0 12px;
    color: var(--secondary-color);
}

.legal-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-block ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-block li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2,
    .page-hero h1 {
        font-size: 28px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .thanks-card h1 {
        font-size: 28px;
    }

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