/* Root Variables */
:root {
    --white: #FFFFFF;
    --navy: #0A1628;
    --blue: #1E6FFF;
    --light-blue: #EEF4FF;
    --gray-text: #64748B;
    --gradient: linear-gradient(135deg, #1E6FFF 0%, #0A1628 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--navy);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 111, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.navbar-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--blue);
}

.btn-cta {
    background-color: var(--blue);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 111, 255, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

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

.floating-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 111, 255, 0.3);
}

.btn-secondary {
    background-color: var(--light-blue);
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background-color: var(--blue);
    color: var(--white);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Stats Bar */
.stats-bar {
    background: var(--light-blue);
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    padding: 1.5rem;
}

.stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue);
}

.stat-text {
    color: var(--gray-text);
    margin-top: 0.5rem;
}

/* Services Preview */
.services-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.section-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(30, 111, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--navy);
}

.service-card p {
    margin-bottom: 1.5rem;
}

.link-more {
    color: var(--blue);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-more:hover {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--light-blue);
    border-radius: 12px;
    margin: 3rem auto;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--navy);
}

/* Testimonials */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--blue);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--navy);
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--navy);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    max-width: 1200px;
    margin: 5rem auto;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    background: var(--light-blue);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray-text);
}

/* Our Story */
.our-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content {
    text-align: left;
}

.story-content h2 {
    text-align: left;
}

.story-content p {
    margin-bottom: 1rem;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

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

/* Mission & Vision */
.mission-vision {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: var(--light-blue);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--blue);
    text-align: left;
}

.mission-card h3,
.vision-card h3 {
    color: var(--navy);
    text-align: center;
}

/* Company Info Section */
.company-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.company-info-card {
    background: var(--light-blue);
    padding: 3rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.info-label {
    display: block;
    font-weight: 600;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-value {
    display: block;
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
}

.info-value a {
    color: var(--blue);
}

/* Values */
.values {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--navy);
}

/* Team */
.team {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--light-blue);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    padding: 0 1rem;
}

.team-card p {
    color: var(--blue);
    font-weight: 600;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.team-card small {
    display: block;
    color: var(--gray-text);
    padding: 0 1rem 1.5rem;
}

/* Services Full */
.services-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-full-card {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--blue);
}

.service-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

.service-full-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-full-card h3 {
    color: var(--navy);
}

/* Pricing */
.pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--light-blue);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

.pricing-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--gray-text);
}

.features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features li {
    padding: 0.75rem 0;
    color: var(--navy);
    border-bottom: 1px solid rgba(30, 111, 255, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-popular {
    border: 2px solid var(--blue);
    transform: scale(1.05);
}

.btn-pricing {
    background-color: var(--light-blue);
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-pricing:hover {
    background-color: var(--blue);
    color: var(--white);
}

.btn-pricing-primary {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn-pricing-primary:hover {
    background-color: #0052CC;
    border-color: #0052CC;
}

/* Forms */
.order-form-section,
.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.order-form,
.contact-form {
    background: var(--light-blue);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(30, 111, 255, 0.2);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30, 111, 255, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
    display: block;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: rgb(239, 68, 68);
    display: block;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Contact Info */
.contact-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-info-card {
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-box {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 111, 255, 0.15);
}

.info-box h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--gray-text);
}

.info-box a {
    color: var(--blue);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.social-links {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

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

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

.footer-column ul li a:hover {
    color: var(--blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Policy Content */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.policy-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
}

.back-link {
    color: var(--blue);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.policy-content h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    text-align: left;
    color: var(--navy);
    margin-top: 1.5rem;
}

.policy-content p {
    text-align: left;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul li {
    color: var(--gray-text);
    margin-bottom: 0.75rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: none;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    margin: 0;
    color: var(--white);
    flex: 1;
}

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

.btn-accept,
.btn-manage {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.btn-accept {
    background-color: var(--blue);
    color: var(--white);
}

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

.btn-manage {
    background-color: transparent;
    color: var(--blue);
    border: 1px solid var(--blue);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .navbar-menu {
        gap: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .navbar-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-cta {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1rem;
    }

    .floating-stats {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .values-grid,
    .team-grid,
    .services-full-grid,
    .pricing-grid,
    .mission-vision-grid,
    .company-info-card,
    .info-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .our-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose {
        margin: 2rem 1rem;
    }

    .cta-section {
        margin: 3rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-manage {
        width: 100%;
    }

    .pricing-popular {
        transform: scale(1);
    }

    .order-form,
    .contact-form {
        padding: 2rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-stats {
        flex-direction: row;
        gap: 0.5rem;
    }

    .stat-card {
        padding: 1rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .services-preview,
    .why-choose,
    .testimonials,
    .team,
    .pricing,
    .order-form-section,
    .contact-form-section,
    .contact-info-section,
    .company-info-section,
    .values,
    .mission-vision,
    .services-full,
    .our-story,
    .policy-content {
        padding: 3rem 1rem;
    }

    .policy-container {
        padding: 1rem;
    }

    .service-card,
    .why-card,
    .value-card,
    .info-box,
    .team-card,
    .testimonial-card,
    .mission-card,
    .vision-card,
    .service-full-card {
        padding: 1.5rem;
    }

    .cookie-content {
        padding: 1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column p,
    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
