:root{
    --text-font: "Noto Sans Georgian", sans-serif;
}

.container{
    width: 100%;
    margin: auto;
}

/* header */
.header{
    background-color: #022762;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: flex;
    flex-direction: row;
    column-gap: 12px;
    align-items: center;
}
.logo:hover{
    transform: scale(1.02);
    transition: 0.3s;
}
.logo_text{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    color: #FFFFFF;
}
.header_rightSide{
    display: flex;
    column-gap: 40px;
    align-items: center;
}
.nav_ul{
    display: flex;
    column-gap: 24px;
}
.nav_a{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 4px;
}
.nav_a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #00E6FB; /* Cyan accent */
    animation: underline 0.3s ease;
}

@keyframes underline {
    from { width: 0; }
    to { width: 100%; }
}
.header_btn{
    padding: 12px 23px;
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #00E6FB;
    border-radius: 40px;
    border: 2px solid #00E6FB;
    background: none;
    cursor: pointer;
}
.header_btn:hover {
    background-color:#00E6FB;
    color:#022762;
    transition: all 0.3s ease;
}

/* after header section */
.hero{
    background-color: #1a4a8a;
    padding: 100px 51px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
}
.hero_text_div{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
    z-index: 2;
    position: relative;
}
.hero_h2{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 52px;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}   
.hero_p{
    width: 320px;
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    color: #FFFFFF;
    opacity: 0.8;
}
.hero_btn{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    display: flex;
    column-gap: 19px;
    align-items: center;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border: none;
    border-radius: 40px;
    padding: 16px 32px;
    margin-top: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 230, 251, 0.3);
    transition: all 0.3s ease;
}
.hero_btn:hover {
    background-color: #00C7E0; /* Slightly darker cyan */
    transform: scale(1.02); /* Subtle grow effect */
    transition: all 0.3s ease;
}

/* Hero Image Styles */
.hero_img_div {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero_img_div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

/* Fade effect overlay to blend with hero background */
.hero_img_div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(26, 74, 138, 1) 0%, 
        rgba(26, 74, 138, 0.9) 20%, 
        rgba(26, 74, 138, 0.7) 40%, 
        rgba(26, 74, 138, 0.5) 60%, 
        rgba(26, 74, 138, 0.3) 80%, 
        rgba(26, 74, 138, 0) 100%);
    z-index: 1;
}



/* activity section */
.activity_h3{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: #022762;
    position: relative;
    margin-bottom: 10px;
}

.activity_h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 2px;
}
.activity_section{
    padding: 50px;
}
.activity_text_div{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.activity_seeAll{
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.activity_a{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 5px;
}

/* Activity Cards */
.activity_div_cards{
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}
.activity_card {
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 300px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.activity_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    color: #022762;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 230, 251, 0.3);
    backdrop-filter: blur(10px);
}
.activity-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.activity-title {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
}
.activity-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
    flex-grow: 1;
}
.activity-meta-item {
    font-family: var(--text-font);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}
.activity-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: auto;
    border-top: 1px solid #e8e8e8;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.5) 0%, transparent 100%);
    margin: 20px -20px -20px -20px;
    padding: 20px 20px 20px 20px;
    border-radius: 0 0 24px 24px;
}
.activity-btn {
    font-family: var(--text-font);
    padding: 9px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
}
.details-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #022762;

}
.register-btn {
    background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
    color: white;
}
.activity-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
/* students activity section */
.activity_section{
    display: flex;
    justify-content: space-around;
}
.students_acticity_div{
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-top: 67px;
    padding-left: 20px;
    border-left: 1px solid #00000020;
}
.students_acticity_div_cards{
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}  
.students_acticity_h2{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 8px;
}
/* Card structure */
.students_acticity_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    height: 170px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}
.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.students_activity_name{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
}
.students_activity_text{
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -1%;
    color: #022762;
}
.students_activity_achiv{
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Regular;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -1%;
    color: #022762;
}

/* Button styles */
.card-buttons{
    display: flex;
    column-gap: 10px;
}
.card-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--text-font);
    font-size: 12px;
    color: #022762;
    opacity: 0.8;
    transition: all 0.2s ease;
    padding: 4px 10px;
    border-radius: 15px;
    background: #cfcfcf39;
}
.card-btn:hover {
    background: rgba(0, 230, 251, 0.1);
    opacity: 1;
}
/* Icons */
.fa-heart {
    font-size: 14px;
    color: #F08F68;
}
.fa-comment-dots{
    font-size: 14px;
    color: #022762;
}
.like-btn:active {
    color: #00E6FB;
}
.like-btn:active {
    filter: invert(68%) sepia(78%) saturate(748%) hue-rotate(146deg) brightness(101%) contrast(101%);
}
.comment-btn:active {
    color: #00E6FB;
}
.comment-btn:active {
    filter: invert(68%) sepia(78%) saturate(748%) hue-rotate(146deg) brightness(101%) contrast(101%);
}
.like-count {
    font-size: 12px;
    font-weight: 500;
}

/* How It Works Section */
.how_it_works_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how_it_works_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,230,251,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

.how_it_works_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 60px;
    padding: 80px 50px;
}

.how_it_works_h3 {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: #022762;
    text-align: center;
    position: relative;
}

.how_it_works_h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 230, 251, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 15px rgba(0, 230, 251, 0.5); }
    to { box-shadow: 0 0 25px rgba(0, 230, 251, 0.8); }
}

.steps_container {
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow-x: scroll;
    padding-top: 30px;
    scrollbar-width: none;
}

.step_card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 220px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.step_card:nth-child(1) { animation-delay: 0s; }
.step_card:nth-child(3) { animation-delay: 1s; }
.step_card:nth-child(5) { animation-delay: 2s; }
.step_card:nth-child(7) { animation-delay: 3s; }

.step_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 230, 251, 0.2);
    border: 2px solid rgba(0, 230, 251, 0.3);
}

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

.step_number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    color: #022762;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 230, 251, 0.3);
}

.step_icon {
    margin: 20px 0 15px 0;
}

.step_icon i {
    font-size: 32px;
    color: #022762;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.step_card:hover .step_icon i {
    color: #00E6FB;
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(0, 230, 251, 0.5);
}

.step_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step_card:hover .step_title {
    color: #00E6FB;
    text-shadow: 0 0 10px rgba(0, 230, 251, 0.3);
}

.step_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -1%;
    color: #666;
}

.step_arrow {
    display: flex;
    align-items: center;
    color: #00E6FB;
    font-size: 20px;
    opacity: 0.7;
}

.step_arrow i {
    animation: pulse 2s infinite;
}

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

/* Partner Organizations Section */
.partners_section {
    background: #ffffff;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

.partners_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,230,251,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    opacity: 0.4;
}

.partners_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partners_h3 {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: #022762;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.partners_h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 230, 251, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.partners_subtitle {
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -1%;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.partner_card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.partner_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    transition: all 0.3s ease;
}

.partner_card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 230, 251, 0.05) 0%, rgba(0, 212, 230, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.partner_card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 230, 251, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 230, 251, 0.1);
    border: 2px solid rgba(0, 230, 251, 0.2);
}

.partner_card:hover::before {
    height: 6px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 50%, #00E6FB 100%);
    box-shadow: 0 0 20px rgba(0, 230, 251, 0.4);
}

.partner_card:hover::after {
    opacity: 1;
}

.partner_logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 230, 251, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.partner_logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00E6FB, #00D4E6, #00E6FB);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.partner_card:hover .partner_logo::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partner_logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner_card:hover .partner_logo img {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(0, 230, 251, 0.3));
}

.partner_name {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.partner_card:hover .partner_name {
    color: #00E6FB;
    transform: translateY(-2px);
}

.partner_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -1%;
    color: #666;
}

.partners_stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat_item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat_number {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -2%;
    color: #00E6FB;
    text-shadow: 0 2px 4px rgba(0, 230, 251, 0.2);
}

.stat_label {
    font-family: var(--text-font);
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -1%;
    color: #022762;
    text-transform: uppercase;
}

/* Newsletter/Stay Updated Section */
.newsletter_section {
    background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

.newsletter_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.newsletter_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.newsletter_text {
    color: #ffffff;
}

.newsletter_h3 {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.newsletter_h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 2px;
}

.newsletter_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -1%;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.newsletter_features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.feature_item i {
    color: #00E6FB;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.feature_item span {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
}

.newsletter_form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form_container {
    color: #ffffff;
}

.form_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.subscribe_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input_group {
    position: relative;
}

.form_input {
    width: 100%;
    padding: 15px 45px 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-family: var(--text-font);
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form_input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form_input:focus {
    outline: none;
    border-color: #00E6FB;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 230, 251, 0.1);
}

.input_icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.checkbox_group {
    margin-top: 10px;
}

.checkbox_label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--text-font);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    line-height: 140%;
}

.form_checkbox {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.form_checkbox:checked + .checkmark {
    background: #00E6FB;
    border-color: #00E6FB;
}

.form_checkbox:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #022762;
    font-size: 12px;
    font-weight: bold;
}

.terms_link {
    color: #00E6FB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms_link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.subscribe_btn {
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    color: #022762;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 230, 251, 0.3);
}

.subscribe_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 251, 0.4);
}

.subscribe_btn i {
    transition: transform 0.3s ease;
}

.subscribe_btn:hover i {
    transform: translateX(3px);
}

.social_links {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social_text {
    font-family: var(--text-font);
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: block;
}

.social_icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social_icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social_icon:hover {
    background: #00E6FB;
    color: #022762;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 230, 251, 0.3);
}

.social_icon i {
    font-size: 18px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
    color: #FFFFFF;
    padding: 80px 50px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer_container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer_brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer_logo img {
    width: 40px;
    height: 40px;
}

.footer_logo_text {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
}

.footer_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer_social {
    display: flex;
    gap: 16px;
}

.footer_social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_social_link:hover {
    background: #00E6FB;
    color: #022762;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 230, 251, 0.3);
}

.footer_social_link i {
    font-size: 18px;
}

.footer_links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer_column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_column_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.footer_column_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #00E6FB;
}

.footer_links_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_link {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer_link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #00E6FB;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer_link:hover {
    color: #00E6FB;
    padding-left: 12px;
}

.footer_link:hover::before {
    width: 8px;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer_bottom_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_copyright {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer_copyright p {
    margin: 0;
}

.footer_legal {
    display: flex;
    gap: 24px;
}

.footer_legal_link {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_legal_link:hover {
    color: #00E6FB;
}