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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 2px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

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

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

.main-nav a:hover {
    color: #27ae60;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #ffeaa7;
}

.hero-section {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #27ae60;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.problem-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-text {
    flex: 1;
    min-width: 300px;
}

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

.problem-text p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.8;
}

.stats-box {
    flex: 0 0 350px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: #7f8c8d;
}

.education-section {
    padding: 80px 20px;
    background-color: white;
}

.education-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.education-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.edu-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.edu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.edu-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: #2c3e50;
}

.edu-card p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
}

.services-pricing {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #7f8c8d;
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

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

.price-card.featured {
    border: 3px solid #27ae60;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #27ae60;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-desc {
    color: #555;
    margin-bottom: 20px;
    min-height: 80px;
    font-size: 15px;
    line-height: 1.6;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    min-height: 120px;
}

.features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.select-btn {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-btn:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.form-section {
    padding: 80px 20px;
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 35px;
}

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

.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;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.trust-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.trust-item p {
    line-height: 1.8;
    opacity: 0.9;
}

.main-footer {
    background-color: #34495e;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
}

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

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

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

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

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

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

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-info ul {
    margin: 20px 0 20px 20px;
    line-height: 1.9;
}

.service-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.cta-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-story {
    padding: 80px 20px;
    background-color: white;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

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

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

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.mission-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.mission-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
}

.mission-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mission-block {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mission-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #27ae60;
}

.mission-block p {
    line-height: 1.8;
    color: #555;
}

.values-section {
    padding: 80px 20px;
    background-color: white;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

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

.value-item p {
    line-height: 1.8;
    color: #555;
}

.experience-section {
    padding: 80px 20px;
    background-color: #27ae60;
    color: white;
}

.experience-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    padding: 40px 20px;
    border-radius: 10px;
}

.stat-box .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.stat-box .stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.approach-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.approach-content > p {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
    line-height: 1.8;
}

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

.step {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    line-height: 1.8;
    color: #555;
}

.contact-section {
    padding: 80px 20px;
    background-color: white;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-map img {
    width: 100%;
    display: block;
}

.working-area {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.working-area h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.working-area > p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.regions-grid {
    max-width: 800px;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.region {
    background-color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.regions-note {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.faq-section {
    padding: 80px 20px;
    background-color: white;
}

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

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

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

.faq-item p {
    line-height: 1.8;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.thanks-details p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

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

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #27ae60;
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.btn-secondary:hover {
    background-color: #27ae60;
    color: white;
}

.legal-page {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.legal-date {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #27ae60;
}

.legal-container p {
    margin-bottom: 15px;
    line-height: 1.9;
    color: #555;
}

.legal-container ul {
    margin: 15px 0 20px 25px;
    line-height: 1.9;
}

.legal-container ul li {
    margin-bottom: 10px;
    color: #555;
}

.legal-container a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    .problem-text h2,
    .page-hero h1 {
        font-size: 28px;
    }

    .education-section h2,
    .services-intro h2,
    .cta-section h2 {
        font-size: 30px;
    }

    .content-wrapper,
    .service-block {
        flex-direction: column;
    }

    .stats-box {
        flex: 1 1 100%;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .legal-container {
        padding: 30px 20px;
    }

    .thanks-container {
        padding: 40px 25px;
    }
}