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

:root {
    --primary-color: #FF8A65;
    --secondary-color: #FFB74D;
    --accent-color: #FF6F61;
    --dark-teal: #2C5F5D;
    --light-teal: #4A7C7A;
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --background-light: #FFFFFF;
    --background-gray: #F5F5F5;
    --coral-gradient-start: #FF8A65;
    --coral-gradient-end: #FFB74D;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #2C5F5D 0%, #1a3a39 100%);
}

.info-banner {
    background: linear-gradient(90deg, var(--coral-gradient-start), var(--coral-gradient-end));
    color: white;
    padding: 12px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item svg {
    flex-shrink: 0;
}

header {
    position: fixed;
    top: 44px;
    width: 100%;
    z-index: 999;
    background: rgba(44, 95, 93, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(44, 95, 93, 1);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral-gradient-start), var(--coral-gradient-end));
    transition: width 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(44, 95, 93, 0.85) 0%, rgba(26, 58, 57, 0.9) 100%),
                url('https://storage.googleapis.com/campaign-website-images/10018/pexels-photo-3184292.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 138, 101, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 138, 101, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

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

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-gradient-start), var(--coral-gradient-end));
    margin: 20px auto 0;
    border-radius: 2px;
}

.services {
    padding: 120px 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-gradient-start), var(--coral-gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 138, 101, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    border-radius: 50%;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-teal);
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    color: white;
    border-color: transparent;
}

.testimonials {
    padding: 120px 0;
    background: var(--background-gray);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-teal);
    font-size: 16px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    width: 30px;
    border-radius: 6px;
}

.why-choose-us {
    padding: 120px 0;
    background: white;
}

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

.feature-item {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-teal);
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-teal), var(--light-teal));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
}

.process-section {
    padding: 120px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: -40px;
    margin-bottom: 60px;
}

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

.process-step {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--background-gray);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    border-radius: 50%;
    color: white;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.process-step h3 {
    font-size: 22px;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.coverage-benefits {
    padding: 120px 0;
    background: var(--background-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 138, 101, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 138, 101, 0.1), rgba(255, 183, 77, 0.1));
    border-radius: 50%;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.guarantees-section {
    padding: 120px 0;
    background: white;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.guarantee-item {
    text-align: center;
    padding: 20px;
}

.guarantee-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-teal), var(--light-teal));
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 30px rgba(44, 95, 93, 0.2);
}

.guarantee-item h3 {
    font-size: 22px;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.guarantee-item p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff8a65, #ffb74d);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.2), transparent);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-button {
    background: linear-gradient(135deg, #2C5F5D, #4A7C7A);
    box-shadow: 0 8px 20px rgba(44, 95, 93, 0.4);
}

.cta-section .cta-button:hover {
    box-shadow: 0 12px 30px rgba(44, 95, 93, 0.5);
}

footer {
    background: linear-gradient(135deg, #1a3a39 0%, var(--dark-teal) 50%, #1a3a39 100%);
    color: var(--text-light);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    transform: translateY(-3px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a,
.footer-column ul li span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 30px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.page-hero {
    padding: 200px 0 100px;
    background: linear-gradient(135deg, rgba(44, 95, 93, 0.95) 0%, rgba(26, 58, 57, 0.95) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.content-section {
    padding: 100px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    font-size: 36px;
    color: var(--dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-main h3 {
    font-size: 28px;
    color: var(--dark-teal);
    margin: 40px 0 20px;
    font-weight: 600;
}

.content-main p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--background-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.feature-list svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-list {
    list-style: none;
    margin: 20px 0;
}

.benefit-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.benefit-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.plan-card {
    background: var(--background-gray);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 138, 101, 0.2);
}

.plan-card h4 {
    font-size: 22px;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.plan-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: linear-gradient(135deg, var(--dark-teal), var(--light-teal));
    padding: 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.sidebar-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.sidebar-card p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info strong {
    display: block;
    margin-bottom: 5px;
}

.contact-section {
    padding: 100px 0;
    background: var(--background-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

.form-group-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.form-group-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    border-radius: 50%;
    color: white;
}

.contact-info-card h3 {
    font-size: 22px;
    color: var(--dark-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-note {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.legal-content {
    padding: 100px 0;
    background: white;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-size: 36px;
    color: var(--dark-teal);
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 24px;
    color: var(--dark-teal);
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-wrapper p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-wrapper strong {
    color: var(--text-dark);
    font-weight: 600;
}

.submit-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--coral-gradient-start), var(--coral-gradient-end));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 138, 101, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 138, 101, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button.loading {
    color: transparent;
}

.submit-button .button-text {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.submit-button.loading .button-text {
    opacity: 0;
}

.button-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.submit-button.loading .button-loader {
    display: block;
}

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

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.toast {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.toast.success {
    border-left-color: #4CAF50;
}

.toast.error {
    border-left-color: #f44336;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.toast.error .toast-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 15px;
}

.toast-message {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #f5f5f5;
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast.removing {
    animation: slideOut 0.3s ease forwards;
}

@media (max-width: 768px) {
    .info-banner {
        position: relative;
    }

    header {
        position: relative;
        top: 0;
    }

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

    .navbar {
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(44, 95, 93, 0.98);
        flex-direction: column;
        gap: 30px;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        text-align: left;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-content {
        margin-top: 100px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .plan-cards {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .toast-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
