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

body {
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

.hero-section {
    background-color: rgb(243, 244, 244);
    padding: 40px 20px;
}

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

.hero-title {
    font-size: 54px;
    margin-bottom: 30px;
    padding: 0 20px;
    text-align: center;
}

.hero-image {
    max-width: 700px;
    height: auto;
    width: 100%;
}

.age-section {
    background-color: white;
    padding: 40px 20px;
}

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

.save-text {
    font-size: 45px;
}

.age-title {
    font-size: 45px;
    margin-bottom: 30px;
}

.age-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.age-link {
    background-color: rgb(47, 158, 233);
    color: white;
    text-decoration: none;
    padding: 35px 30px;
    border-radius: 5px;
    font-size:1.5rem;
    transition: background-color 0.3s;
}

.age-link:hover {
    background-color: rgb(38, 127, 187);
}

.red-color{
    background-color: #C62828;
}
.hidden{
    display: none;
}
/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 40% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 1.8rem;
}

.phone-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #28a745;
    margin-top: 1.5rem;
    word-break: break-all; /* Prevents long numbers from overflowing */
}
.footer-text {
    font-size: 12px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: justify;
}

.footer-links {
    text-align: center;
}

.footer-links a {
    color: rgb(47, 158, 233);
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .hero-section{
        padding: 10px 20px;
    }

    .age-section {
        background-color: white;
        padding: 10px 10px;
    }
    .save-text{
        font-size: 25px;
    }
    .hero-title {
        font-size: 28px;
        padding: 0px;
    }

    .age-title {
        font-size: 25px;
    }

    .age-links {
        flex-wrap: wrap;
    }

    .age-link {
        margin: 0 auto;
        padding: 24px 30px
    }
    .modal-content {
        width: 90%;
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1.6rem;
    }
}
.cta-button {
    display: block;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}
.cta-button:hover {
    background-color: #218838;
}