/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a{
    text-decoration: none !important;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.main-title .highlight {
    color: #2563eb;
    font-weight: 900;
}

.image-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
        max-height: 380px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Debt Selection Section */
.debt-selection {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 20px auto;
}

.debt-button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.debt-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.debt-button:active {
    transform: translateY(0);
}

/* Content Section */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 30px 20px;
    margin-top: 580px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    margin: 0 5px;
    font-size: 0.9rem;
}

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

.footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
}

.small-text {
    font-size: 0.7rem;
    margin-top: 15px;
    opacity: 0.9;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .buttons-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 800px;
        gap: 20px;
    }
    
    .debt-button {
        flex: 1;
        min-width: 180px;
        max-width: 220px;
    }
    
    .description {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .buttons-container {
        flex-direction: row;
        gap: 25px;
    }
    
    .debt-button {
        padding: 18px 15px;
        font-size: 1.2rem;
    }
}

/* Animation for smooth loading */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.debt-selection,
.content-section {
    animation: fadeIn 0.6s ease-out;
}

.debt-selection {
    animation-delay: 0.2s;
}

.content-section {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
   .main-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    } 
}

/* Contact Page Styles */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-hours {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #2563eb;
}

.form-disclaimer {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
}

.privacy-link {
    color: #2563eb;
    text-decoration: underline;
    font-weight: bold;
}

.privacy-link:hover {
    color: #1d4ed8;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.submit-button {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    .contact-hours {
        font-size: 1rem;
    }
}

/* Health Benefits Page Styles */
.intro-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.highlight-text {
    font-weight: bold;
    color: #2563eb;
}

.benefits-section {
    margin: 40px 0;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.benefits-image {
    flex: 1;
    max-width: 400px;
}

.benefits-text {
    flex: 2;
}

.benefits-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.key-points-section {
    margin: 40px 0;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.key-points-list {
    list-style: none;
    padding: 0;
}

.key-points-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.key-points-list li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.evolution-section {
    margin: 40px 0;
    text-align: center;
}

.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    background-color: #ff8c00;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #e67e00;
}

.features-section {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .benefits-text p {
        font-size: 1rem;
    }
    
    .key-points-section {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .feature-item h3 {
        font-size: 0.9rem;
    }
}

.w100{width: 100% !important;max-width: 100% !important;}