/* CSS Variables for easy customization */
:root {
    --primary-color: #51A2D6;
    --secondary-color: #f1f5f9;
    --accent-color: #51A2D6;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #0f172a;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.8));
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
}

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

/* Header Styles */
.header {
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    flex: 0 0 auto;
}

.logo svg{
    width: 100%;
    height: 80px;
}

.footer-logo svg{
    width: 300px;
    height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.contact-btn {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background: url(assets/images/hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light);
    overflow: hidden;

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.8), rgba(34, 34, 34, 0.8));
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.cta-button {
 padding: 15px 25px;
 border: unset;
 border-radius: 15px;
 color: #353535;
 z-index: 1;
 background: #e8e8e8;
 position: relative;
 font-weight: 1000;
 font-size: 17px;
 transition: all 250ms;
 overflow: hidden;
}

.cta-button::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 border-radius: 15px;
 background-color: var(--primary-color);
 z-index: -1;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 transition: all 250ms
}

.cta-button:hover {
    color: #e8e8e8;
}
.cta-button:hover::before {
 width: 100%;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}



.contact-details {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.contact-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-card {
    background: transparent;
    color: #333;
    margin-right: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-card-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h4 {
    font-size: 1rem;
    color: #2e2e2e;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-card-content p {
    color: #222222;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-card-content ul li {
    color: #222222;
    margin-bottom: 0.2rem;
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
}

.contact-card-content ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-left h3,
.services-right h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

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

.services-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    border: 1.8px solid var(--primary-color);
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.services-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}



/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background: #ffffff;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(230, 176, 62, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 8px 20px var(--accent-color);
    transition: var(--transition);
}

.advantage-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px var(--accent-color);
}

.advantage-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Work Process Section */
.work-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.work-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.work-process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.work-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.work-process .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.work-process .timeline-item:nth-child(odd) {
    flex-direction: row;
}

.work-process .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.work-process .timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.work-process .timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid var(--accent-color);
}


.work-process .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.work-process .timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.work-process .timeline-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.work-process .timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;

}

.contact-map {
    margin-top: 2rem;
}

.map-image {
    width: 100%;
    max-width: 900px;
    height: auto;

}

.contact-form {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h3 {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}



.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    background-color: white;
    transition: var(--transition);
    color: #666;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ccc;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    flex: 1;
}

.privacy-link {
    color: #0d58c8;
    text-decoration: underline;
}

.submit-button {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 136, 212, 0.3);
    background: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--background-dark) 0%, #2d2d2d 100%);
    color: var(--text-light);
    padding: 4rem 0 0;
}

.footer-content {
    display: flex;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: space-between;
}

.footer-section h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-5px);
    opacity: 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.footer-section ul li a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-info svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;

}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu.nav-center {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-light);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        transform: none;
    }

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

    .contact-btn {
        display: none;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        text-align: center;
        margin-top: 1.5rem;
    }

    .map-image {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .contact-card {
        padding: 0.8rem;
        margin-right: 10px;
    }

    .contact-card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkbox-group {
        margin-bottom: 1.5rem;
    }

    .checkbox-group label {
        font-size: 0.85rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
        padding-left: 0;
        display: block;
        text-align: center;
    }

    .footer-section ul li a::before {
        display: none;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 50px;
        height: 50px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .contact-info p {
        justify-content: center;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-left h3,
    .services-right h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .services-list li {
        padding: 0.8rem 0 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .services-list li::before {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        left: -9px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .advantage-card {
        padding: 2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .work-process-timeline::before {
        display: none;
    }

    .work-process .timeline-item {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 3rem;
    }

    .work-process .timeline-content {
        margin: 1rem 0 0 0;
        width: 100%;
        border-left: none;
        border-top: 4px solid var(--accent-color);
    }

    .work-process .timeline-content::before {
        display: none;
    }

    .work-process .timeline-number {
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .footer {
        padding: 1.5rem 0 0;
        margin-top: 1.5rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .footer-section {
        margin-bottom: 1rem;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        max-width: 100%;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .footer-section ul li {
        margin-bottom: 0.3rem;
        width: 100%;
    }

    .footer-section ul li a {
        font-size: 0.8rem;
        display: block;
        text-align: center;
        padding: 0.3rem 0;
    }

    .social-links {
        justify-content: center;
        gap: 0.8rem;
        margin-top: 0.8rem;
        display: flex;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .contact-info p {
        font-size: 0.8rem;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-info svg {
        width: 14px;
        height: 14px;
    }

    .footer-bottom {
        padding: 0.8rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 0.5rem;
        gap: 0.6rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }

    .footer-links a {
        font-size: 0.75rem;
        display: block;
        text-align: center;
        padding: 0.2rem 0;
    }

    .container {
        padding: 0 0.5rem;
    }
}

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

    .about-text h2,
    .advantages h2,
    .contact h2 {
        font-size: 2rem;
    }

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


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}