* {
    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: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-cards {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.container-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.card-item {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.card-item h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.card-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    background-color: #e9ecef;
    transform: scale(1.02);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

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

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

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trust-content img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-container p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
}

.footer-main {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 4rem 2rem 1rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #7f8c8d;
}

.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

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

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

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

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

.process-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 2rem;
}

.step-item {
    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: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.team-image-section {
    padding: 0;
    position: relative;
}

.team-image-container {
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #2c3e50;
}

.team-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 3rem 2rem 2rem 2rem;
    color: #ffffff;
}

.team-overlay-text h2 {
    font-size: 2.2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.commitment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.commitment-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.service-detail-content a {
    margin-top: 1.5rem;
}

.services-info {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.info-blocks {
    display: flex;
    gap: 2rem;
}

.info-block {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.info-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-main {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-info-column h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.contact-map-column {
    flex: 1;
}

.contact-map-column img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.visit-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.visit-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.visit-tips {
    display: flex;
    gap: 2rem;
}

.tip-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tip-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tip-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.9rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    color: #5a6c7d;
}

#manage-cookies-btn {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .hero-content,
    .trust-content,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

    .container-cards,
    .testimonials-grid,
    .values-grid,
    .process-steps,
    .info-blocks,
    .visit-tips {
        flex-direction: column;
    }

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

    .nav-main {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 2rem;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .ad-disclosure {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .services-container h2,
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

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