/* style.css */
html {
    font-size: 10px;
}

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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -0.4rem 2rem rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 2rem;
    border-top: 0.1rem solid #e5e7eb;
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 120rem;
    margin: 0 auto;
}

.cookie-text p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #ff6b35;
    color: white;
}

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

.cookie-btn.decline {
    background: #f3f4f6;
    color: #374151;
    border: 0.1rem solid #d1d5db;
}

.cookie-btn.decline:hover {
    background: #e5e7eb;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
   background: #231A48;
    backdrop-filter: blur(1rem);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
}

.nav-menu {
    display: none;
    gap: 3rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: white;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.6rem, 0.6rem);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.6rem, -0.6rem);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(1rem);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    .nav-link {
        font-size: 1.6rem;
        padding: 1rem 0;
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 60rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 8rem;
}

.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    /*max-width: 60rem;*/
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    /*max-width: 50rem;*/
}

.hero-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #e55a2e;
    transform: translateY(-0.2rem);
}

/* Why Section */
.why-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 5rem;
    color: #1f2937;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3f0;
    border-radius: 50%;
}

.feature-icon img {
    width: 3rem;
    height: 3rem;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-description {
    font-size: 1.4rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Finance Section */
.finance-section {
    padding: 8rem 0;
    background: white;
}

.finance-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.finance-text {
    flex: 2;
}

.finance-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: #1f2937;
}

.finance-paragraph {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4b5563;
}

.finance-sidebar {
    flex: 1;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 0.8rem;
    border-left: 0.4rem solid #ff6b35;
}

.sidebar-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #4b5563;
}

.sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1f2937;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 20rem;
}

.faq-answer p {
    padding: 0 3rem 2.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Footer */
.footer {

background: #231A48;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1.4rem;
    color: #9ca3af;
    line-height: 1.5;
}

.footer-links h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #374151;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #9ca3af;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 4rem;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
        margin: 0 auto;
    }

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

    .features-grid {
        justify-content: space-between;
    }

    .feature-card {
        flex: 0 1 calc(50% - 1.5rem);
        min-width: 30rem;
    }

    .finance-content {
        flex-direction: row;
        gap: 5rem;
        align-items: flex-start;
    }

    .finance-text {
        flex: 2;
    }

    .finance-sidebar {
        flex: 1;
        min-width: 30rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-brand {
        flex: 2;
        max-width: 40rem;
    }

    .footer-links {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }

    .feature-card {
        flex: 0 1 calc(33.333% - 2rem);
    }

    .features-grid {
        gap: 3rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .finance-title {
        font-size: 3.2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-card {
        min-width: 100%;
        padding: 2.5rem 2rem;
    }

    .finance-title {
        font-size: 2.4rem;
    }

    .finance-sidebar {
        padding: 2rem;
    }

    .faq-question {
        padding: 2rem;
    }

    .faq-answer p {
        padding: 0 2rem 2rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }
}
/* uber-uns.css */

/* Active nav link */
.nav-link.active {
    color: #ff6b35;
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 50rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 8rem;
}

.about-hero-title {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 60rem;
}

.about-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 70rem;
}

.about-cta-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #e55a2e;
    transform: translateY(-0.2rem);
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 20rem;
    max-width: 25rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.stat-number:nth-child(1) {
    color: #ff6b35;
}

.stat-item:nth-child(2) .stat-number {
    color: #3b82f6;
}

.stat-item:nth-child(3) .stat-number {
    color: #10b981;
}

.stat-item:nth-child(4) .stat-number {
    color: #f59e0b;
}

.stat-label {
    font-size: 1.4rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Team/Testimonials Section */
.team-section {
    padding: 8rem 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 30rem;
    max-width: 35rem;
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
}

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

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

.testimonial-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.testimonial-title {
    font-size: 1.4rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-description {
        font-size: 1.5rem;
    }

    .stats-grid {
        gap: 2rem;
    }

    .stat-item {
        min-width: 15rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .testimonials-grid {
        gap: 2rem;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 2.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-hero-title {
        font-size: 3.5rem;
    }

    .stat-item {
        flex: 0 1 calc(50% - 1.5rem);
    }

    .testimonial-card {
        flex: 0 1 calc(50% - 1.5rem);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .about-hero-title {
        font-size: 4.5rem;
    }

    .stat-item {
        flex: 0 1 calc(25% - 2.25rem);
    }

    .testimonial-card {
        flex: 0 1 calc(33.333% - 2rem);
    }
}
/* kontakt.css */

/* Contact Section */
.contact-section {
    padding: 12rem 0 8rem;
    background: #f8fafc;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 6rem;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.8rem;
    color: #6b7280;
    max-width: 60rem;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    flex: 2;
}

.contact-form {
    background: white;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

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

.form-group label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    border: 0.2rem solid #e5e7eb;
    border-radius: 0.6rem;
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.3rem rgba(255, 107, 53, 0.1);
}

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

.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: start;
}

.submit-btn:hover {
    background: #e55a2e;
    transform: translateY(-0.2rem);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info */
.contact-info {
    flex: 1;
}

.contact-info-card {
    background: white;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail strong {
    color: #1f2937;
    font-weight: 600;
}

/* Form validation styles */
.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group.success input,
.form-group.success textarea {
    border-color: #10b981;
}

.error-message {
    color: #ef4444;
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem 1.5rem;
    border-radius: 0.6rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

/* Loading state */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    border: 0.2rem solid transparent;
    border-top: 0.2rem solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .contact-content {
        flex-direction: row;
        gap: 5rem;
        align-items: flex-start;
    }

    .contact-form {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
    }

    .contact-title {
        font-size: 4rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .contact-title {
        font-size: 4.5rem;
    }

    .contact-form {
        padding: 5rem;
    }

    .contact-info-card {
        padding: 5rem;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .contact-section {
        padding: 10rem 0 6rem;
    }

    .contact-title {
        font-size: 2.8rem;
    }

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

    .contact-form {
        padding: 3rem 2rem;
    }

    .contact-info-card {
        padding: 3rem 2rem;
    }

    .contact-header {
        margin-bottom: 4rem;
    }
}

/* Character counter */
.char-counter {
    font-size: 1.3rem;
    color: #6b7280;
    text-align: right;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}
/* partner.css */

.partner-section {
    padding: 12rem 0 8rem;
    background: #f8fafc;
    min-height: 100vh;
}

.partner-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6rem;
}

.partner-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 6rem;
}

/* Benefits Section */
.partner-benefits {
    background: white;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.benefits-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.6rem;
    color: #4b5563;
}

.benefit-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Cooperation Formats */
.cooperation-formats {
    background: white;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.formats-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 3rem;
}

.format-card {
    background: #fef3c7;
    padding: 2.5rem;
    border-radius: 0.8rem;
    margin-bottom: 2rem;
    border-left: 0.4rem solid #f59e0b;
}

.format-card:last-child {
    margin-bottom: 0;
}

.format-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.format-card p {
    font-size: 1.4rem;
    color: #6b7280;
    margin: 0;
}

/* Partner CTA */
.partner-cta {
    text-align: center;
}

.partner-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    background: #2563eb;
    transform: translateY(-0.2rem);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .partner-content {
        flex-direction: row;
        gap: 4rem;
    }

    .partner-benefits {
        flex: 1;
    }

    .cooperation-formats {
        flex: 1;
    }

    .partner-title {
        font-size: 4rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .partner-title {
        font-size: 4.5rem;
    }

    .partner-benefits,
    .cooperation-formats {
        padding: 5rem;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .partner-section {
        padding: 10rem 0 6rem;
    }

    .partner-title {
        font-size: 2.8rem;
        margin-bottom: 4rem;
    }

    .partner-benefits,
    .cooperation-formats {
        padding: 3rem 2rem;
    }

    .benefits-title,
    .formats-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .benefit-item {
        font-size: 1.5rem;
    }

    .format-card {
        padding: 2rem;
    }

    .partner-btn {
        padding: 1.2rem 3rem;
        font-size: 1.5rem;
    }
}
/* programme.css */

/* Stats Hero Section */
.stats-hero {
    position: relative;
    height: 60vh;
    min-height: 50rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stats-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 8rem;
}

.stats-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1rem);
    padding: 3rem 2rem;
    border-radius: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 25rem;
    max-width: 30rem;
}

.stat-card:hover {
    transform: translateY(-0.5rem);
}

.stat-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.orange {
    background: #ff6b35;
}

.stat-icon.blue {
    background: #3b82f6;
}

.stat-icon.green {
    background: #10b981;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    color: #6b7280;
    font-weight: 500;
}

/* Programs Section */
.programs-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.program-card {
    background: white;
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 30rem;
    max-width: 45rem;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-0.5rem);
}

.program-header {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.program-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.program-description {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.program-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 0.1rem solid #e5e7eb;
    border-bottom: 0.1rem solid #e5e7eb;
}

.program-duration {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.duration-label {
    font-size: 1.2rem;
    color: #9ca3af;
    font-weight: 500;
}

.duration-value {
    font-size: 1.4rem;
    color: #1f2937;
    font-weight: 600;
}

.level-badge {
    background: #e5e7eb;
    color: #374151;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
}

.program-card.basic .level-badge {
    background: #dbeafe;
    color: #1e40af;
}

.program-card.advanced .level-badge {
    background: #d1fae5;
    color: #065f46;
}

.program-card.specialization .level-badge {
    background: #fed7aa;
    color: #c2410c;
}

.program-card.executive .level-badge {
    background: #e0e7ff;
    color: #3730a3;
}

.program-btn {
    border: none;
    padding: 1.4rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.program-btn.blue {
    background: #3b82f6;
}

.program-btn.blue:hover {
    background: #2563eb;
}

.program-btn.green {
    background: #10b981;
}

.program-btn.green:hover {
    background: #059669;
}

.program-btn.orange {
    background: #ff6b35;
}

.program-btn.orange:hover {
    background: #e55a2e;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: white;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 1.2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 30rem;
    max-width: 35rem;
}

.testimonial-content {
    margin-bottom: 2.5rem;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #d1d5db;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 1.3rem;
    color: #6b7280;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .stats-hero {
        height: auto;
        min-height: auto;
        padding: 12rem 0 6rem;
    }

    .stats-hero-title {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-card {
        min-width: 100%;
        padding: 2.5rem 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .programs-section {
        padding: 6rem 0;
    }

    .programs-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .program-card {
        min-width: 100%;
        padding: 2.5rem;
    }

    .program-title {
        font-size: 1.8rem;
    }

    .program-details {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .testimonials-section {
        padding: 6rem 0;
    }

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

    .testimonial-card {
        min-width: 100%;
        padding: 2.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .stats-hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        justify-content: space-around;
    }

    .stat-card {
        flex: 0 1 calc(50% - 1.5rem);
        max-width: none;
    }

    .programs-grid {
        justify-content: space-between;
    }

    .program-card {
        flex: 0 1 calc(50% - 1.5rem);
        max-width: none;
    }

    .testimonials-grid {
        justify-content: space-between;
    }

    .testimonial-card {
        flex: 0 1 calc(50% - 1.5rem);
        max-width: none;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .stats-hero-title {
        font-size: 4rem;
    }

    .stat-card {
        flex: 0 1 calc(33.333% - 2rem);
    }

    .program-card {
        flex: 0 1 calc(50% - 1.5rem);
    }

    .testimonial-card {
        flex: 0 1 calc(33.333% - 2rem);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .stats-hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}