* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    color: #333;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
}

.logo-text p {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}

.header-phone {
    color: #28a745;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone:hover {
    color: #218838;
}

/* Hero Section */
.hero {
    background: white;
    color: #333;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #2c3e50;
}

.hero .highlight {
    color: #28a745;
}

.hero p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e9ecef;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    text-align: left;
}

.badge-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
    color: #2c3e50;
}

.badge-text span {
    font-size: 12px;
    color: #666;
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
    padding: 60px 20px;
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits h3 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-list {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-item {
    padding: 18px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-item:first-child {
    padding-top: 0;
}

.benefit-item strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Calendly Section */
.calendly-section {
    background: white;
    padding: 60px 20px;
}

.calendly-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.calendly-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.calendly-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.calendly-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    min-height: 700px;
}

/* Coverage Options */
.coverage-options {
    background: white;
    padding: 60px 20px;
}

.coverage-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coverage-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.coverage-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.coverage-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.tab-button {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-button:hover {
    border-color: #28a745;
    background: #f8fff9;
}

.tab-button.active {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

.tab-price {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.8;
}

.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #333;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.coverage-details {
    background: #f8f9fa;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
}

.details-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.details-header h4 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.coverage-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-large {
    font-size: 48px;
    color: #28a745;
    font-weight: 700;
}

.price-period {
    font-size: 20px;
    color: #666;
}

.coverage-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.coverage-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    text-align: left;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a:hover {
    color: #28a745;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .benefits h3,
    .calendly-content h3,
    .coverage-content h3 {
        font-size: 26px;
    }
}