/* Reset and Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;

background: #00EB89;
    color: #fff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 2rem rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    border: 0.2rem solid #4CAF50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-0.2rem);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
}

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

.btn-accept, .btn-decline {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-decline {
    background: transparent;
    color: #fff;
    border: 0.1rem solid #fff;
}

.btn-decline:hover {
    background: #fff;
    color: #333;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.nav-container {
    /*max-width: 120rem;*/
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
    background: #111827;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo span {
    font-size: 2.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

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

.nav-menu a:hover {
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 2.5rem;
    height: 0.3rem;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 12rem 2rem 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.hero-content > div:first-of-type {
    flex: 1;
    min-width: 30rem;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 2.4rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 30rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Results Section */
.results {
background: #111827;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.results h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 20rem;
    flex: 1;
    max-width: 25rem;
}

.stat-item h3 {
    font-size: 4.8rem;
    font-weight: 700;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.6rem;
    opacity: 0.9;
}

/* Work Method Section */
.work-method {
    background: linear-gradient(135deg, #400b59 0%, #160018 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.work-method h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.method-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 25rem;
    flex: 1;
    max-width: 30rem;
    text-align: center;
}

.method-icon {
    width: 8rem;
    height: 8rem;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.method-icon img {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) invert(1);
}

.method-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.method-item p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.about p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 25rem;
    flex: 1;
    max-width: 30rem;
    text-align: center;
}

.testimonial-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 0.3rem solid #4CAF50;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.testimonial-role {
    font-size: 1.4rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 30rem;
}

.contact h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.contact h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.contact-image {
    flex: 1;
    min-width: 30rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 4rem;
}

.footer-logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo span {
    font-size: 2.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.footer-bottom {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-info {
    flex: 1;
    min-width: 25rem;
}

.footer-info p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-legal {
    flex: 1;
    min-width: 25rem;
    text-align: right;
}

.footer-legal p {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Success Page */
.success-page {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 12rem 2rem 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.success-content p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        background: rgba(12, 12, 12, 0.95)!important;
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0.7rem) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-0.7rem) rotate(-45deg);
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.6rem;
    }

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

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

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

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

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

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

    .footer-legal {
        text-align: left;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 10rem 1.5rem 6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1.2rem 2.4rem;
        font-size: 1.4rem;
    }
}
/* Contact Section Updates */
.contact-content {
    align-items: flex-start;
}

.contact h3 {
    line-height: 1.3;
}

.contact p {
    margin-bottom: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-info strong {
    color: #4CAF50;
    font-weight: 600;
}

/* Form button full width */
.btn-contact {
    width: 100%;
    margin-top: 1rem;
    justify-self: stretch;
}

/* Form styling improvements */
#contactForm {
    display: flex;
    flex-direction: column;
}

#contactForm .form-group {
    width: 100%;
}

#contactForm .form-group input,
#contactForm .form-group textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Footer contact info styling */
.footer-info strong {
    color: #4CAF50;
    font-weight: 600;
}

/* Mobile adjustments for contact info */
@media (max-width: 768px) {
    .contact-info {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .contact-info p {
        font-size: 1.3rem;
    }

    .contact h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 1.5rem;
    }
}
.g{
    background: var(--gr9, linear-gradient(90deg, #00EB89 0%, #60A5FA 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Reset and Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 2rem rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #4CAF50;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    border: 0.2rem solid #4CAF50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-0.2rem);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
}

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

.btn-accept, .btn-decline {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-decline {
    background: transparent;
    color: #fff;
    border: 0.1rem solid #fff;
}

.btn-decline:hover {
    background: #fff;
    color: #333;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.nav-container {
    /*max-width: 120rem;*/
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo span {
    font-size: 2.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

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

.nav-menu a:hover {
    color: #4CAF50;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 2.5rem;
    height: 0.3rem;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 12rem 2rem 8rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: #4CAF50;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 4rem;
}

.hero-image img {
    width: 100%;
    max-width: 80rem;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
}

.values h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
    text-align: center;
}

.values-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.values-text {
    flex: 1;
    min-width: 30rem;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.values-text .btn-primary {
    margin-top: 2rem;
}

.values-image {
    flex: 1;
    min-width: 30rem;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.mission h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #4CAF50;
}

.mission-description {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.mission .btn-primary {
    margin-bottom: 4rem;
}

.mission-image {
    margin-top: 2rem;
}

.mission-image img {
    width: 100%;
    max-width: 70rem;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Training World Section */
.training-world {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 0 0 8rem 0;
}

.training-hero {
    width: 100%;
    height: 40rem;
    overflow: hidden;
}

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

.training-world .container {
    padding-top: 6rem;
}

.training-world h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #4CAF50;
    text-align: center;
}

.training-description {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
    text-align: center;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.training-world .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Training Programs Section */
.training-programs {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
}

.training-programs h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
    text-align: center;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.program-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 25rem;
    flex: 1;
    max-width: 30rem;
    text-align: left;
    position: relative;
}

.program-icon {
    margin-bottom: 2rem;
}

.program-dot {
    width: 1.5rem;
    height: 1.5rem;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
}

.program-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border-radius: 50%;
}

.program-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4CAF50;
    line-height: 1.3;
}

.program-duration {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.program-description {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.training-programs .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Results Section */
.results {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.results h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 20rem;
    flex: 1;
    max-width: 25rem;
}

.stat-item h3 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.6rem;
    opacity: 0.9;
}

/* Work Method Section */
.work-method {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.work-method h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
}

.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.method-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 25rem;
    flex: 1;
    max-width: 30rem;
    text-align: center;
}

.method-icon {
    width: 8rem;
    height: 8rem;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.method-icon img {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) invert(1);
}

.method-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4CAF50;
}

.method-item p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #4CAF50;
}

.about p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 25rem;
    flex: 1;
    max-width: 30rem;
    text-align: center;
}

.testimonial-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 0.3rem solid #4CAF50;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.testimonial-role {
    font-size: 1.4rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 30rem;
}

.contact h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.contact h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.3;
}

.contact p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-info strong {
    color: #4CAF50;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    min-width: 30rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

.btn-contact {
    width: 100%;
    margin-top: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 4rem;
}

.footer-logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo span {
    font-size: 2.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-info {
    flex: 1;
    min-width: 25rem;
}

.footer-info p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-legal {
    flex: 1;
    min-width: 25rem;
    text-align: right;
}

.footer-legal p {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #4CAF50;
}

/* Success Page */
.success-page {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 12rem 2rem 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.success-content p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0.7rem) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-0.7rem) rotate(-45deg);
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-description {
        font-size: 1.6rem;
    }

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

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

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

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

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

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

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

    .training-hero {
        height: 25rem;
    }

    .footer-legal {
        text-align: left;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 10rem 1.5rem 6rem;
    }

    .training-hero {
        height: 20rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1.2rem 2.4rem;
        font-size: 1.4rem;
    }
}
.hero-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
    justify-content: center;
}
/* Reset and Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 2rem rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #4CAF50;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    border: 0.2rem solid #4CAF50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-0.2rem);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
}

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

.btn-accept, .btn-decline {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-decline {
    background: transparent;
    color: #fff;
    border: 0.1rem solid #fff;
}

.btn-decline:hover {
    background: #fff;
    color: #333;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.nav-container {
    /*max-width: 120rem;*/
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo span {
    font-size: 2.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

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

.nav-menu a:hover {
    color: #4CAF50;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 2.5rem;
    height: 0.3rem;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 12rem 2rem 8rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: #4CAF50;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 4rem;
}

.hero-image img {
    width: 100%;
    max-width: 80rem;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
}

.values h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
    text-align: center;
}

.values-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.values-text {
    flex: 1;
    min-width: 30rem;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.values-text .btn-primary {
    margin-top: 2rem;
}

.values-image {
    flex: 1;
    min-width: 30rem;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.mission h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #4CAF50;
}

.mission-description {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.mission .btn-primary {
    margin-bottom: 4rem;
}

.mission-image {
    margin-top: 2rem;
}

.mission-image img {
    width: 100%;
    max-width: 70rem;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Training World Section */
.training-world {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 0 0 8rem 0;
}

.training-hero {
    width: 100%;
    height: 40rem;
    overflow: hidden;
}

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

.training-world .container {
    padding-top: 6rem;
}

.training-world h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #4CAF50;
    text-align: center;
}

.training-description {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
    text-align: center;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.training-world .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Training Programs Section */
.training-programs {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
}

.training-programs h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
    text-align: center;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.program-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 25rem;
    flex: 1;
    max-width: 30rem;
    text-align: left;
    position: relative;
}

.program-icon {
    margin-bottom: 2rem;
}

.program-dot {
    width: 1.5rem;
    height: 1.5rem;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
}

.program-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border-radius: 50%;
}

.program-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4CAF50;
    line-height: 1.3;
}

.program-duration {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.program-description {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.training-programs .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Results Section */
.results {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.results h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 20rem;
    flex: 1;
    max-width: 25rem;
}

.stat-item h3 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.6rem;
    opacity: 0.9;
}

/* Partnership Section */
.partnership {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 0 0 8rem 0;
}

.partnership-hero {
    width: 100%;
    height: 40rem;
    overflow: hidden;
}

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

.partnership .container {
    padding-top: 6rem;
}

.partnership h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #4CAF50;
    text-align: center;
}

.partnership-description {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.9;
    text-align: center;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.partnership .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Cooperation Section */
.cooperation {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
}

.cooperation h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
    text-align: center;
}

.cooperation-items {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 80rem;
    margin: 0 auto;
}

.cooperation-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.cooperation-item h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.cooperation-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Expansion Section */
.expansion {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.expansion h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
}

.expansion-items {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 80rem;
    margin: 0 auto 6rem auto;
}

.expansion-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.expansion-item h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.expansion-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.expansion .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto 4rem auto;
}

.expansion-image {
    margin-top: 2rem;
}

.expansion-image img {
    width: 100%;
    max-width: 70rem;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #4CAF50;
}

.about p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #4CAF50;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 25rem;
    flex: 1;
    max-width: 30rem;
    text-align: center;
}

.testimonial-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 0.3rem solid #4CAF50;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.testimonial-role {
    font-size: 1.4rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 8rem 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 30rem;
}

.contact h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.contact h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.3;
}

.contact p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-info strong {
    color: #4CAF50;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    min-width: 30rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

.btn-contact {
    width: 100%;
    margin-top: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 4rem;
}

.footer-logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo span {
    font-size: 2.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-info {
    flex: 1;
    min-width: 25rem;
}

.footer-info p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-legal {
    flex: 1;
    min-width: 25rem;
    text-align: right;
}

.footer-legal p {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #4CAF50;
}

/* Success Page */
.success-page {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 12rem 2rem 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.success-content p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0.7rem) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-0.7rem) rotate(-45deg);
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-description {
        font-size: 1.6rem;
    }

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

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

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

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

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

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

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

    .training-hero {
        height: 25rem;
    }

    .partnership-hero {
        height: 25rem;
    }

    .cooperation-items {
        gap: 3rem;
    }

    .expansion-items {
        gap: 3rem;
    }

    .footer-legal {
        text-align: left;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 10rem 1.5rem 6rem;
    }

    .training-hero {
        height: 20rem;
    }

    .partnership-hero {
        height: 20rem;
    }

    .cooperation-item,
    .expansion-item {
        padding: 3rem 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1.2rem 2.4rem;
        font-size: 1.4rem;
    }
}