/* Tips Page Styles */

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

.tips_hero::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(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

.tips_hero_content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tips_hero_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tips_hero_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.tips_hero_stats {
    display: flex;
    gap: 40px;
}

.tips_hero_stats .stat_item {
    text-align: center;
}

.tips_hero_stats .stat_number {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 32px;
    color: #00E6FB;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 230, 251, 0.3);
}

.tips_hero_stats .stat_label {
    font-family: var(--text-font);
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.tips_hero_visual {
    position: relative;
    height: 400px;
}

.floating_card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.floating_card i {
    font-size: 24px;
    color: #00E6FB;
}

.floating_card span {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.card_1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card_2 {
    top: 120px;
    right: 40px;
    animation-delay: 2s;
}

.card_3 {
    bottom: 40px;
    left: 60px;
    animation-delay: 4s;
}

.floating_card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 230, 251, 0.2);
}

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

/* Tips Categories */
.tips_categories {
    background: #ffffff;
    padding: 80px 50px;
}

.tips_categories_container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.tips_categories_title::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;
}

.categories_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category_card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 30px;
    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);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category_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;
}

.category_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);
}

.category_card:hover::before {
    height: 6px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 50%, #00E6FB 100%);
}

.category_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 230, 251, 0.3);
    transition: all 0.3s ease;
}

.category_card:hover .category_icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 230, 251, 0.4);
}

.category_icon i {
    font-size: 32px;
    color: #022762;
}

.category_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 10px;
}

.category_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #666;
    margin-bottom: 20px;
}

.category_count {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 12px;
    color: #00E6FB;
    text-transform: uppercase;
    background: rgba(0, 230, 251, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Featured Tips */
.featured_tips {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 50px;
}

.featured_tips_container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured_header {
    text-align: center;
    margin-bottom: 60px;
}

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

.featured_subtitle {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.featured_tips_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.featured_tip_card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.featured_tip_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 230, 251, 0.2);
}

.tip_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tip_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 230, 251, 0.3);
}

.tip_icon i {
    font-size: 20px;
    color: #022762;
}

.tip_meta {
    flex-grow: 1;
}

.tip_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 5px;
}

.tip_category {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 12px;
    color: #00E6FB;
    text-transform: uppercase;
    background: rgba(0, 230, 251, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.tip_content {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #666;
    margin-bottom: 20px;
}

.tip_actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.tip_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tip_rating i {
    color: #FFD700;
    font-size: 14px;
}

.tip_rating span {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 12px;
    color: #666;
}

.read_more_btn {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 14px;
    color: #00E6FB;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.read_more_btn:hover {
    color: #022762;
    transform: translateX(5px);
}

/* Expert Advice */
.expert_advice {
    background: #ffffff;
    padding: 80px 50px;
}

.expert_advice_container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.expert_advice_title::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;
}

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

.expert_card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 30px;
    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 ease;
    position: relative;
    overflow: hidden;
}

.expert_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;
}

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

.expert_card:hover::before {
    height: 6px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 50%, #00E6FB 100%);
}

.expert_avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00E6FB;
    box-shadow: 0 8px 24px rgba(0, 230, 251, 0.3);
    transition: all 0.3s ease;
}

.expert_card:hover .expert_avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 230, 251, 0.4);
}

.expert_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert_name {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 5px;
}

.expert_title {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 14px;
    color: #00E6FB;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.expert_quote {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.expert_specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expert_specialty {
    font-family: var(--text-font);
    font-weight: 500;
    font-size: 12px;
    color: #022762;
    background: rgba(0, 230, 251, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

/* Study Resources */
.study_resources {
    background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
    padding: 80px 50px;
    color: #FFFFFF;
}

.study_resources_container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.study_resources_title::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;
}

.resources_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.resource_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;
}

.resource_card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 230, 251, 0.2);
}

.resource_card:hover::before {
    height: 6px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 50%, #00E6FB 100%);
}

.resource_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 230, 251, 0.3);
    transition: all 0.3s ease;
}

.resource_card:hover .resource_icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 230, 251, 0.4);
}

.resource_icon i {
    font-size: 24px;
    color: #022762;
}

.resource_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
}

.resource_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

.resource_link {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 14px;
    color: #00E6FB;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.resource_link:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

/* Tips Search Section */
.tips_search_section {
    background: #ffffff;
    padding: 80px 50px;
}

.tips_search_container {
    max-width: 1200px;
    margin: 0 auto;
}

.search_header {
    text-align: center;
    margin-bottom: 50px;
}

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

.search_subtitle {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.search_filters {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.search_input_group {
    position: relative;
    margin-bottom: 30px;
}

.search_input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: var(--text-font);
    font-size: 16px;
    color: #022762;
    transition: all 0.3s ease;
}

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

.search_icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

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

.filter_select {
    width: 100%;
    padding: 15px 20px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: var(--text-font);
    font-size: 14px;
    color: #022762;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.clear_filters_btn {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 14px;
    color: #666;
    background: none;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear_filters_btn:hover {
    color: #022762;
    border-color: #00E6FB;
    background: rgba(0, 230, 251, 0.1);
}

/* All Tips Section */
.all_tips_section {
    background: #ffffff;
    padding: 80px 50px;
}

.all_tips_container {
    max-width: 1200px;
    margin: 0 auto;
}

.tips_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.all_tips_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #022762;
}

.tips_count {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 16px;
    color: #666;
}

.tips_count span {
    color: #00E6FB;
    font-weight: 700;
}

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

.tip_card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tip_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;
}

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

.tip_card:hover::before {
    height: 6px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 50%, #00E6FB 100%);
}

.tip_card_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tip_card_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00E6FB 0%, #00D4E6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 230, 251, 0.3);
}

.tip_card_icon i {
    font-size: 20px;
    color: #022762;
}

.tip_card_meta {
    flex-grow: 1;
}

.tip_card_title {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #022762;
    margin-bottom: 5px;
}

.tip_card_category {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 12px;
    color: #00E6FB;
    text-transform: uppercase;
    background: rgba(0, 230, 251, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.tip_card_content {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #666;
    margin-bottom: 20px;
}

.tip_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.tip_card_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tip_card_rating i {
    color: #FFD700;
    font-size: 14px;
}

.tip_card_rating span {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 12px;
    color: #666;
}

.tip_card_read_more {
    font-family: var(--text-font);
    font-weight: 600;
    font-size: 14px;
    color: #00E6FB;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tip_card_read_more:hover {
    color: #022762;
    transform: translateX(5px);
}

.load_more_container {
    text-align: center;
}

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

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

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

.load_more_btn:hover i {
    transform: translateY(2px);
}

/* Tips Newsletter */
.tips_newsletter {
    background: linear-gradient(135deg, #022762 0%, #1a4a8a 100%);
    padding: 80px 50px;
    color: #FFFFFF;
}

.tips_newsletter_container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.newsletter_text {
    color: #ffffff;
}

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

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

.newsletter_description {
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    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);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tips_hero_content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tips_hero_title {
        font-size: 36px;
    }
    
    .tips_hero_stats {
        justify-content: center;
    }
    
    .tips_hero_visual {
        height: 300px;
    }
    
    .floating_card {
        padding: 15px;
    }
    
    .floating_card span {
        font-size: 12px;
    }
    
    .tips_categories_title,
    .featured_title,
    .expert_advice_title,
    .study_resources_title,
    .search_title,
    .all_tips_title {
        font-size: 32px;
    }
    
    .categories_grid,
    .featured_tips_grid,
    .experts_grid,
    .resources_grid,
    .tips_grid {
        grid-template-columns: 1fr;
    }
    
    .filters_row {
        grid-template-columns: 1fr;
    }
    
    .newsletter_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tips_header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tips_hero,
    .tips_categories,
    .featured_tips,
    .expert_advice,
    .study_resources,
    .tips_search_section,
    .all_tips_section,
    .tips_newsletter {
        padding: 40px 20px;
    }
    
    .tips_hero_title {
        font-size: 28px;
    }
    
    .tips_hero_description {
        font-size: 16px;
    }
    
    .tips_hero_stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .search_filters {
        padding: 20px;
    }
    
    .newsletter_form {
        padding: 20px;
    }
} 