@font-face {
    font-family: 'RobotoSlab';
    src: url('./fonts/RobotoSlab-VariableFont_wght.ttf');
}

:root{
    --bg-color: #29b5b5;
    --bg-gradient: linear-gradient(135deg, #29b5b5 0%, #1f827d 100%);
    --main-color: #d72727;
    --main-gradient: linear-gradient(135deg, #d72727 0%, #ff4757 100%);
    --card-bg: #1f827d;
    --card-gradient: linear-gradient(135deg, #1f827d 0%, #26a69a 100%);
    --text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    --box-shadow-soft: 0 10px 30px rgba(0,0,0,0.2);
    --box-shadow-hover: 0 15px 40px rgba(0,0,0,0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body{
    background: var(--bg-gradient);
    font-family: "RobotoSlab" !important;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
*{
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.container-1{
    max-width: 944px;
    margin: 0 auto;
    width: 100%;
}

.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.logo{
    background: var(--main-gradient);
    border-radius: 50px;
    padding: 10px;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}
.logo img{
    width: 120px;
}
.current{
    color: var(--main-color);
}
.navigation-menu ul {
    display: flex;
    align-items: center;
    border-radius: 60px;
    padding: 14px 24px;
}
.navigation-menu ul li{
    padding-right: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #EBEBEB;
}
.home{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.banner-txt{
    width: 50%;
    padding-right: 56px;
}
.header-banner{
    display: flex;
    height: 450px;
}

.banner-txt span{
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    color: var(--main-color);
}
.banner-txt h1{
    font-size: 55px;
    font-weight: 700;
    line-height: 80px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 16px;
    text-shadow: var(--text-shadow);
    animation: fadeInUp 1s ease-out;
}
.banner-txt h2{
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    color: #EBEBEB;
    padding-top: 16px;
}
.banner-txt p{
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #EBEBEB;
    padding-top: 16px;
}
.banner-img{
    width: 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.banner-img img{
    object-fit: cover;
    width: 350px;
    height: 240px;
    box-shadow: var(--box-shadow-hover);
    border-radius: 16px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    animation: fadeInRight 1s ease-out 0.3s both;
}

.banner-img img:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.download-form{
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    width: 100%;
    height: 252px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-soft);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.download-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--main-gradient);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}
.download-form h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    color: var(--main-color);
    padding-top: 40px;
}
.downloadBtn button{
    background: var(--main-gradient);
    padding: 12px 40px;
    border-radius: 50px;
    font-family: "RobotoSlab";
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow-soft);
    position: relative;
    overflow: hidden;
}

.downloadBtn button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.downloadBtn button:hover::before {
    left: 100%;
}

.downloadBtn button:hover{
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}
.arrow::before{
    position: absolute;
    content: url("../img/Vector 5.png");
    top: 570px;
    left: 470px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7410%) hue-rotate(296deg) brightness(93%) contrast(110%);
}
.introduction-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--card-gradient);
    border-radius: 24px;
    padding: 40px 56px;
    gap: 40px;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.introduction-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}
.introduction-container img{
    width: 400px;
    border-radius: 8px;
    box-shadow: 0px 24px 80px 0px #000000CC;
}
.introduction-container p{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
}
.introduction{
    margin-top: 100px;
}
.introduction h2{
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 40px;
}
.benefits-txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.benefits-txt h2{
    font-size: 35px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
}
.benefits-txt img{
    width: 100%;
    box-shadow: 0px 24px 80px 0px #000000CC;
    border-radius: 8px;
}
.benefits{
    margin-top: 80px;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at center, rgba(215, 39, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.benefits .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.benefits-txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.benefits-txt h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-shadow: var(--text-shadow);
    position: relative;
}

.benefits-txt h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--main-gradient);
    border-radius: 2px;
}

.benefits-txt img{
    width: 100%;
    max-width: 467px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefits-txt img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.benefits-container{
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.benefits-card{
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInRight 0.8s ease-out both;
}

.benefits-card:nth-child(1) { animation-delay: 0.2s; }
.benefits-card:nth-child(2) { animation-delay: 0.4s; }
.benefits-card:nth-child(3) { animation-delay: 0.6s; }

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.benefits-card:hover::before {
    left: 100%;
}

.benefits-card:hover::after {
    opacity: 0.1;
}

.benefits-card:hover {
    transform: translateY(-8px) translateX(8px);
    box-shadow: -10px 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(215, 39, 39, 0.3);
}

.benefits-card-icon {
    width: 60px;
    height: 60px;
    margin-right: 24px;
    flex-shrink: 0;
    background: var(--main-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(215, 39, 39, 0.3);
    transition: var(--transition);
}

.benefits-card:hover .benefits-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(215, 39, 39, 0.5);
}

.benefits-card-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.benefits-card-content {
    flex: 1;
}

.benefits-card p{
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    color: #FFFFFF;
    margin: 0;
    transition: var(--transition);
}

.benefits-card:hover p {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-logo img{
    width: 80px;
}
.footer-logo{
    background-color: var(--main-color);
    width: fit-content;
    height: fit-content;
    border-radius: 50px;
    padding: 15px;
}
.footer-top{
    display: grid;
    grid-template-columns: 200px 1fr;
}
.disclaimer div{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.disclaimer img{
    width: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    margin-left: 20px;
}
.disclaimer h3{
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #FFFFFFE5;
}
.disclaimer p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFFE5;
}
footer{
    margin-top: 100px;
}
.footer-bottom{
    border-top: 1px solid var(--main-color);
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    justify-content: space-between;
    padding: 28px 0;
    margin-top: 24px;
}
.footer-menu ul{
    display: flex;
}
.footer-menu ul li{
    padding-right: 40px;
}
.banner-header h1{
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
    text-align: center;
    color: #FFFFFF;
}
.banner-header h2{
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 16px;
}
.banner-header p{
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    color: #EBEBEB;
    padding-top: 16px;
}
.main-content{
    margin-top: 80px;
    padding: 0 16px;
}
.main-content h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    color: #FFFFFF;
}
.main-content h3{
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    color: #FFFFFF;
}
.main-content h4{
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    color: #FFFFFF;
}
.main-content h5{
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: #FFFFFF;
}
.main-content img{
    width: 100%;
    height: 350px;
    margin-top: 40px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.main-content img:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}
.main-content p, .main-content ul li{
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #EBEBEB;
}
.main-content ul li {
    list-style: disc;
    margin-left: 20px;
}
table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    border: 1px solid #ddd;
}
th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}
th {
    background-color: var(--main-color);
    color: white;
}
tr {
    background-color: #f2f2f2;
}
.table {
    margin-top: 40px;
}
.table h2{
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
}
.banner-box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.banner-box-card{
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    height: 136px;
    align-items: center;
}
.banner-box-card div{
    display: flex;
    flex-direction: column;
    padding-left: 16px;
}
.banner-box-card span{
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #FFFFFF;
}
.banner-box-card a{
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #EBEBEB;
}
.contact{
    margin: 40px auto 0 auto;
    width: 664px;
    max-width: 90%;
}
.contact h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
}
.contact p{
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    color: #EBEBEB;
    padding-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"]{
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
    color: #FFFFFF;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus{
    outline: none;
    border-color: var(--main-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(215, 39, 39, 0.3);
    transform: translateY(-2px);
}
.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder{
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #FFFFFFB2;
}
.textarea{
    height: 112px;
}
label{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #EBEBEB;
}
.form-btn{
    display: flex;
    justify-content: center;
}
.form-btn button{
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    background: var(--main-gradient);
    border-radius: 50px;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    color: #FFFFFF;
    box-shadow: var(--box-shadow-soft);
    position: relative;
    overflow: hidden;
}

.form-btn button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.form-btn button:hover::before {
    left: 100%;
}

.form-btn button:hover{
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* Articles Section Styles */
.articles-section {
    margin-top: 80px;
    padding: 0 16px;
}

.articles-section h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: var(--card-gradient);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    margin-bottom: 40px;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out both;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.article-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-content {
    padding: 40px;
}

.article-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.article-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #EBEBEB;
    margin-bottom: 16px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.article-content ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #EBEBEB;
    margin-bottom: 12px;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.article-content ul li::before {
    content: "•";
    color: var(--main-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.article-content ul li strong {
    color: #FFFFFF;
    font-weight: 600;
}

.author-opinion {
    background: rgba(215, 39, 39, 0.1);
    border-left: 4px solid var(--main-color);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.author-opinion h4 {
    color: var(--main-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.author-opinion p {
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hamburger-menu {
        display: block;
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .hamburger-menu span {
        background-color: #ffffff;
        display: block;
        height: 3px;
        margin: 6px 0;
        width: 100%;
        transition: all 0.3s ease;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .navigation-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bg-color);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navigation-menu ul {
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        align-items: flex-start;
    }

    .navigation-menu ul li {
        list-style: none;
        margin: 20px 0;
    }

    .navigation-menu ul li a {
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        text-align: left;
    }

    .navigation-menu.open {
        display: flex;
    }

    .header {
        padding: 20px 16px;
    }
    .header-banner{
        flex-direction: column;
        padding: 0 16px;
        height: auto;
    }
    .banner-txt{
        width: 100%;
        padding-right: 0;
    }
    .banner-img {
        width: 100%;
        position: relative;
        display: flex;
        align-items: flex-end;
    }
    .banner-img img {
        width: 280px;
        height: 260px;
        box-shadow: 0px 24px 80px 0px #000000CC;
        border-radius: 8px;
        position: absolute;
        z-index: 1;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .arrow{
        display: none;
    }
    .banner-txt h1 {
        font-size: 40px;
        line-height: 56px;
        text-align: center;
        color: #FFFFFF;
        padding-top: 16px;
    }
    .banner-txt h2{
        text-align: center;
    }
    .banner-txt span{
        display: none;
    }
    .banner-txt p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        text-align: left;
        color: #EBEBEB;
        padding-top: 16px;
    }
    .download-form{
        margin-top: 220px;
    }
    .introduction-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        background-color: var(--card-bg);
        border-radius: 16px;
        padding: 24px 16px;
        gap: 32px;
    }
    .introduction-container img{
        width: 100%;
    }
    .introduction h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;
    }
    .introduction{
        padding: 0 16px;
    }
    .benefits .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    .benefits{
        margin-top: 56px;
    }
    .benefits-txt h2{
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 30px;
    }
    .benefits-txt h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    .benefits-container{
        gap: 20px;
    }
    .benefits-card {
        padding: 20px;
        border-radius: 16px;
    }
    .benefits-card:hover {
        transform: translateY(-5px);
    }
    .benefits-card-icon {
        width: 50px;
        height: 50px;
        margin-right: 16px;
        border-radius: 12px;
    }
    .benefits-card-icon img {
        width: 26px;
        height: 26px;
    }
    .benefits-card p{
        font-size: 14px;
        line-height: 22px;
    }
    .footer-top {
        display: grid;
        grid-template-columns: repeat(1 ,1fr);
    }
    .footer-bottom{
        flex-direction: column-reverse;
    }
    .footer-menu ul{
        flex-direction: column;
    }
    .footer-menu ul li{
        padding-bottom: 16px;
    }
    footer{
        margin-top: 56px;
        padding: 0 32px;
    }
    .banner-header h1{
        font-size: 40px;
        font-weight: 700;
        line-height: 56px;
        text-align: center;
    }
    .banner-header{
        padding: 0 16px;
    }
    .banner-header h2{
        font-size: 25px;
        font-weight: 700;
        line-height: 30px;
        text-align: center;
    }
    .banner-header p{
        font-size: 16px;
        font-weight: 400;
        line-height: 32px;
        text-align: center;
    }
    .main-content{
        margin-top: 40px;
        padding: 0 16px;
    }
    .main-content h3{
        font-size: 32px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;
    }
    .main-content h4{
        font-size: 30px;
        font-weight: 700;
        text-align: left;
        color: #FFFFFF;
    }
    .contact{
        margin: 40px auto 0 auto;
        width: 100%;
        max-width: 90%;
        padding: 0 16px;
    }
    
    /* Mobile styles for articles */
    .articles-section h2 {
        font-size: 32px;
        line-height: 48px;
    }
    
    .article-content {
        padding: 24px;
    }
    
    .article-content h3 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .article-content h4 {
        font-size: 20px;
        margin-top: 20px;
    }
    
    .main-content img {
        height: 250px;
        margin-top: 30px;
    }
    
    .article-card img {
        height: 200px;
    }
}

/* Read More Button Styles */
.read-more {
    margin-top: 30px;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    background: var(--main-gradient);
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: "RobotoSlab";
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    box-shadow: var(--box-shadow-soft);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

@media (max-width: 767px) {
    .read-more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Additional Beautiful Effects */
.navigation-menu ul li a {
    position: relative;
    transition: var(--transition);
}

.navigation-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--main-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navigation-menu ul li a:hover::after {
    width: 100%;
}

.footer-logo {
    animation: float 3s ease-in-out infinite;
}

.author-opinion {
    background: rgba(215, 39, 39, 0.15);
    border-left: 4px solid transparent;
    border-image: var(--main-gradient) 1;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.author-opinion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--main-gradient);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading states */
img {
    transition: var(--transition);
}

img:hover {
    filter: brightness(1.1);
}