.hero-section {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    color: #437c8a;
    animation: tilt-n-move-shaking 0.5s infinite;
}

.hero-content {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-description {
    text-align: center;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
    color: #437c8a;
    animation: bounce 2s infinite;
}

.section {
    padding: 40px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #437c8a;
    animation: tilt-n-move-shaking 0.5s infinite;
}

@keyframes tilt-n-move-shaking {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5px, 5px) rotate(5deg);
    }

    50% {
        transform: translate(0, 0) rotate(0deg);
    }

    75% {
        transform: translate(-5px, 5px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}


.story-section {
    background: #f8f9fa;
}

.story-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.story-text {
    color: #555;
}

.story-text h3 {
    color: #437c8a;
    margin-bottom: 20px;
    font-weight: 800;
}

.story-visual {
    background: linear-gradient(135deg, #606060, #606060);
    border-radius: 20px;
    padding: 40px;
    color: white !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-visual h3 {
    font-size: 3rem;
    font-weight: bold
}

.story-visual p {
    color: white !important;
}

.story-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    color: #437c8a;
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-label {
    color: #437c8a;
}

.cta-section {
    color: #606060;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    color: #437c8a;
}

.cta-description {
    font-size: 2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #437c8a;
    padding: 15px 40px;
    border: 1px solid #437c8a;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    color: #fff;
    background: #437c8a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

img.blog-img {
    width: 100px;
    height: 350px;
    border-radius: 5px;
}

.blog-read-more {
    border: 1px solid #79b6c8;
    background-color: #79b6c8;
    color: #fff;
    margin-top: 10px;
    padding: 4px;
    font-size: 14px;
    border-radius: 4px;
    width: 78px;
}

.blog-read-more:hover {
    border: 1px solid #79b6c8;
    color: #79b6c8;
    background-color: #fff;
}

.blog-description-container {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recent-blog-img {
    width: 100px !important;
}

.recent-blog {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-tit {
    min-height: 50px;
}

.read-more-btn {
    color: #79B6C8;
    cursor: pointer;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slider-desc-text {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
}

.download-btn {
    font-size: 12px;
    color: #79B6C8;
}

.download-btn:hover {
    color: #79B6C8;
}

@media(max-width) {
    .recent-blog {
        gap: 0px;
    }
}