
        * {
            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: 32px;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .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: 28px;
        }

        .age-title {
            font-size: 28px;
            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);
        }

        .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: 24px;
                padding: 0px;
            }

            .age-title {
                font-size: 25px;
            }

            .age-links {
                flex-wrap: wrap;
            }

            .age-link {
                margin: 0 auto;
                padding: 24px 30px
            }
        }
