:root {
    --primary-color: #2563eb;
    --primary-color-rgb: 37, 99, 235;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --max-width: 1200px;
    --header-height: 70px;
    --header-height-mobile: 60px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.3s ease;
    height: 70px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.phone-number {
    margin-left: 1rem;
}

.phone-number a {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c7be5 100%);
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease !important;
    white-space: nowrap;
    font-size: 0.9rem;
}

.phone-number a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2c7be5 0%, var(--primary-color) 100%);
}

.phone-number a::after {
    display: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c7be5 100%);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin-left: 1rem;
    padding: 0;
    border: none;
}

.nav-toggle i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2c7be5 0%, var(--primary-color) 100%);
}

@media (max-width: 1024px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .logo a {
        font-size: 1.4rem;
    }

    .phone-number a {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0.5rem;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        top: 60px;
    }

    .nav-links a {
        color: white;
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .phone-number {
        width: 100%;
        margin: 0.5rem 0;
    }

    .phone-number a {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
        padding: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    padding-top: var(--header-height);
    margin: 0;
    position: relative;
}

@media (max-width: 768px) {
    .hero-slider {
        padding-top: var(--header-height-mobile);
    }
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-slide .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c7be5 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.swiper-slide .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2c7be5 0%, var(--primary-color) 100%);
}

.swiper-slide .cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.swiper-slide .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.swiper-slide .cta-button:hover::before {
    left: 100%;
}

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

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

.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.about-text {
    padding-right: 2rem;
}

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

.section-header.text-left {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--light-text);
    font-size: 1.1rem;
}

.team-member {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-top: 3rem;
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--light-text);
}

/* Services Section */
.services {
    padding: 5rem 0;
}

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

.services-intro {
    padding-right: 2rem;
}

.services-description {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--light-background);
}

.pricing .container {
    max-width: 100%;
    padding: 0 1rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-weight: 500;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.pricing-toggle span.active {
    color: var(--text-color);
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
    display: none;
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.pricing-grid.active {
    display: grid;
}

.pricing-grid.basic-plans {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
}

.pricing-grid.basic-plans-extra {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.pricing-grid.vip-plans {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
}

.pricing-grid.vip-plans-extra {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .pricing-grid.basic-plans,
    .pricing-grid.vip-plans {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        max-width: 900px;
        margin: 0 auto 3rem auto;
    }

    .pricing-grid.basic-plans-extra,
    .pricing-grid.vip-plans-extra {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing-grid.basic-plans,
    .pricing-grid.vip-plans,
    .pricing-grid.basic-plans-extra,
    .pricing-grid.vip-plans-extra {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing .container {
        padding: 0 0.5rem;
    }
}

.pricing-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

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

.features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features li {
    padding: 0.75rem 0;
    color: var(--light-text);
    border-bottom: 1px solid #e5e7eb;
}

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

.select-plan {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.select-plan:hover {
    background-color: var(--secondary-color);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: var(--light-background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 3rem 0;
    background-color: var(--light-background);
}

.benefits .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 0.6rem;
    font-size: 1.2rem;
}

.benefit-content h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.benefit-content p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

.benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.benefits .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.benefits .cta-button:hover {
    background: var(--secondary-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-image {
        order: -1;
    }

    .animated-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .benefit-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .benefit-icon {
        min-width: 2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }

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

/* Fun Facts Section */
.fun-facts {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

.fun-facts .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.fun-facts .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.fun-facts .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.fact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-10px);
}

.fact-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.fact-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .fact-item p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1c2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.8rem;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 140, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 140, 255, 0.4);
    background: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.info-item i {
    font-size: 1.5rem;
    color: #6b8cff;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 140, 255, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: rgba(107, 140, 255, 0.3);
    transform: scale(1.1);
}

.info-content h3 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-content p {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.info-content a {
    color: #6b8cff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #7b99ff;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .info-item {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .info-item {
        padding: 1rem;
        gap: 1rem;
    }

    .info-item i {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .info-content h3 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1c2e !important;
    padding: 4rem 0;
    /* margin-top: 4rem; */
    border-top: 1px solid #444;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.company-info {
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #aaa;
}

/* Policy Pages */
.policy-page {
    padding: 6rem 0;
    background-color: var(--light-background);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-content .last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-content section {
    margin-bottom: 2.5rem;
}

.policy-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.policy-content p, 
.policy-content li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-background);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .about-content,
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        min-height: 300px;
        order: -1;
    }

    .about-text,
    .services-intro {
        padding-right: 0;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}

/* Notification styles */
.toastify {
    font-family: inherit;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    cursor: default;
}

.toastify:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
