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

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

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

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

.nav-container {
    max-width: 1200px;
    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;
}

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

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

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

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

.hero-content {
    flex: 1;
    min-width: 400px;
}

.hero-text {
    padding: 60px 50px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    min-width: 400px;
    min-height: 400px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-button {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-section {
    padding: 60px 0;
}

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

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

.intro-card p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
    flex: 1 1 350px;
    max-width: 380px;
    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 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.card-price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.card-button {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.card-button:hover {
    background-color: #34495e;
    transform: scale(1.02);
}

.benefits-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    flex: 1 1 260px;
    max-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-card {
    text-align: center;
    padding: 50px;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

.registration-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
}

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

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

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

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

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

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #fff9e6;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #f39c12;
    border-radius: 6px;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px 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;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    min-height: 350px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    min-width: 400px;
    padding: 45px;
}

.service-detail-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.detail-button {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.detail-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.about-intro {
    padding: 60px 0;
}

.about-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 400px;
    min-height: 350px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-text {
    flex: 1;
    min-width: 400px;
    padding: 50px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.values-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.value-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    flex: 1 1 260px;
    max-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.approach-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.approach-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

.team-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

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

.expertise-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.expertise-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.mission-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.mission-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

.contact-section {
    padding: 60px 0;
}

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

.contact-card {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    flex: 1;
    min-width: 350px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.info-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.location-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 45px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.location-card h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.faq-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 260px;
    max-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    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: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.service-confirmation {
    background-color: #e8f8f5;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 16px;
    color: #2c3e50;
}

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

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

.button-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: #3498db;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.next-steps {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.next-steps h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 0;
}

.legal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 15px;
}

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

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

.legal-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        min-width: 100%;
    }

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

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

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

    .cards-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .benefits-cards,
    .values-grid,
    .expertise-cards,
    .faq-grid,
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card,
    .value-card,
    .expertise-card,
    .faq-card,
    .step-card {
        max-width: 100%;
    }

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

    .service-detail-image,
    .service-detail-content {
        min-width: 100%;
    }

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

    .about-image,
    .about-text {
        min-width: 100%;
    }

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

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

    .form-card {
        padding: 30px;
    }

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

    .legal-content {
        padding: 30px;
    }
}