:root {
    --primary-color: #5fbff9;
    --secondary-color: #efe9f4;
    --dark-color: #171d1c;
    --accent-color: #5863f8;
    --hero-overlay: rgba(23, 29, 28, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: #fff;
}

.top_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo_area .main_logo {
    height: 50px;
    width: auto;
}

.menu_toggle_area {
    display: none;
}

.mobile_menu_btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile_menu_btn:hover {
    background: rgba(95, 191, 249, 0.1);
    color: var(--primary-color);
}

.mobile_menu_btn.active {
    color: var(--primary-color);
    background: rgba(95, 191, 249, 0.1);
}

.desktop_menu {
    display: block;
}

.nav_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav_list li {
    position: relative;
}

.nav_list li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.nav_list li a:hover,
.nav_list li.current a {
    color: var(--primary-color);
}

.has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
}

.has_dropdown:hover .sub_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub_menu li a {
    padding: 12px 20px;
    color: #666;
    font-weight: 500;
}

.sub_menu li a:hover {
    color: var(--primary-color);
    background: #f8f9fa;
}

.main_hero_area {
    height: 100vh;
    min-height: 700px;
    background-image: url('../images/hero-bg-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero_content_wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero_text_box h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero_text_box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.primary_btn {
    background: var(--primary-color);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary_btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(95, 191, 249, 0.4);
}

.secondary_btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 34px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary_btn:hover {
    background: white;
    color: var(--dark-color);
}

.content_sections {
    padding: 100px 0;
    background: #f8f9fa;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro_block h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-weight: 800;
}

.intro_block p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature_item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature_item:hover {
    transform: translateY(-5px);
}

.feature_icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature_icon i {
    font-size: 32px;
    color: white;
}

.feature_item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.feature_item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.about_peter_wrapper {
    padding: 100px 0;
    background: #efe9f4;
    position: relative;
}

.about_container_thing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.about_text_side {
    padding-right: 20px;
}

.about_content_box h2 {
    font-size: 2.5rem;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about_content_box p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.experience_highlights {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid #5fbff9;
}

.highlight_point {
    text-align: center;
    flex: 1;
}

.highlight_point .number_bit {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #5fbff9;
    margin-bottom: 5px;
}

.highlight_point .desc_bit {
    font-size: 14px;
    color: #171d1c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about_cta_area {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about_btn_primary {
    background: #5fbff9;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.about_btn_primary:hover {
    background: #5863f8;
    transform: translateY(-2px);
}

.about_btn_secondary {
    background: transparent;
    color: #171d1c;
    border: 2px solid #171d1c;
    padding: 13px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.about_btn_secondary:hover {
    background: #171d1c;
    color: white;
}

.about_image_side {
    position: relative;
}

.peter_image_container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.peter_main_image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.image_overlay_box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.image_overlay_box h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #171d1c;
    font-weight: 700;
}

.image_overlay_box p {
    margin: 0;
    color: #5fbff9;
    font-weight: 600;
    font-size: 14px;
}

.bottom_footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer_logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer_col p {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

.contact_info {
    margin-top: 25px;
}

.contact_info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ddd;
}

.contact_info i {
    color: var(--primary-color);
    width: 16px;
}

.footer_col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 10px;
}

.footer_links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: var(--primary-color);
}

.footer_bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
}

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

.footer_bottom p {
    color: #ccc;
    margin: 0;
}

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

.footer_social a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_social a:hover {
    background: var(--primary-color);
    color: white;
}

/* MOBILE STYLES - SINGLE MEDIA QUERY */
@media (max-width: 992px) {
    .menu_toggle_area {
        display: block;
    }
    
    .desktop_menu {
        display: none;
    }
    
    .nav_list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav_list.mobile_open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav_list li {
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .nav_list li:last-child {
        border-bottom: none;
    }
    
    .nav_list li a {
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .has_dropdown .sub_menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: #f8f9fa;
        margin: 10px 0;
        border-radius: 5px;
        border-left: 3px solid var(--primary-color);
    }
    
    .has_dropdown .sub_menu li {
        border-bottom: none;
        margin-bottom: 5px;
    }
    
    .has_dropdown .sub_menu li:last-child {
        margin-bottom: 0;
    }
    
    body.menu_open {
        overflow: hidden;
    }
    
    body.menu_open::before {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 998;
    }
    
    .hero_text_box h1 {
        font-size: 2.5rem;
    }
    
    .hero_text_box p {
        font-size: 1.1rem;
    }
    
    .hero_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer_cols {
        grid-template-columns: 1fr;
    }
    
    .about_content_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about_text_side {
        padding-right: 0;
        order: 2;
    }
    
    .about_image_side {
        order: 1;
    }
    
    .about_content_box h2 {
        font-size: 2.2rem;
    }
    
    .experience_highlights {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero_text_box h1 {
        font-size: 2rem;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
    }
    
    .intro_block h2 {
        font-size: 2.2rem;
    }
    
    .footer_bottom_content {
        flex-direction: column;
        text-align: center;
    }
    
    .about_peter_wrapper {
        padding: 60px 0;
    }
    
    .about_content_box h2 {
        font-size: 1.8rem;
    }
    
    .about_cta_area {
        flex-direction: column;
    }
    
    .about_btn_primary,
    .about_btn_secondary {
        text-align: center;
    }
    
    .experience_highlights {
        padding: 20px;
    }
    
    .highlight_point .number_bit {
        font-size: 1.5rem;
    }
}


@media (max-width: 992px) {
    .menu_toggle_area {
        display: block;
    }
    
    .desktop_menu {
        display: none;
    }
    
    .nav_list {
        display: none;
    }
    
    .nav_list li {
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .nav_list li a {
        padding: 15px 0;
        display: block;
        width: 100%;
        color: var(--dark-color);
    }
    
    /* Keep your other mobile styles here */
}


@media (max-width: 992px) {
    .menu_toggle_area {
        display: block !important;
    }
    
    .desktop_menu {
        display: none !important;
    }
    
    .nav_list {
        display: none !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        flex-direction: column !important;
        padding: 20px !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
        z-index: 999 !important;
        gap: 0 !important;
    }
    
    .nav_list.show-mobile {
        display: flex !important;
    }
    
    .nav_list li {
        border-bottom: 1px solid #eee !important;
        width: 100% !important;
    }
    
    .nav_list li a {
        padding: 15px 0 !important;
        display: block !important;
        width: 100% !important;
        color: var(--dark-color) !important;
    }
    
    .has_dropdown .sub_menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 10px 0 10px 20px !important;
        background: #f8f9fa !important;
        margin: 10px 0 !important;
        border-radius: 5px !important;
        display: block !important;
    }
}


.nav_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_toggle_area {
    display: none !important;
}

.desktop_menu {
    display: none !important;
}



.services_pricing_area {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.services_container_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services_intro_bit h2 {
    font-size: 2.6rem;
    text-align: center;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 20px;
}

.services_intro_bit p {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.price_card_item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.price_card_item:hover {
    transform: translateY(-5px);
}

.featured_service {
    border: 3px solid #5fbff9;
    transform: translateY(-10px);
}

.popular_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #5fbff9;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.service_card_image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card_image_pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.price_card_item:hover .card_image_pic {
    transform: scale(1.05);
}

.card_content_stuff {
    padding: 30px;
}

.card_content_stuff h3 {
    font-size: 1.8rem;
    color: #171d1c;
    font-weight: 700;
    margin-bottom: 15px;
}

.card_content_stuff p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
}

.service_features_list {
    margin: 25px 0;
}

.feature_point {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #171d1c;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.feature_point:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5fbff9;
    font-weight: 900;
}

.feature_point:last-child {
    border-bottom: none;
}

.pricing_info_box {
    background: #efe9f4;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 25px 0;
}

.price_amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #171d1c;
    margin-bottom: 5px;
}

.price_note {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.card_cta_area {
    text-align: center;
    margin-top: 25px;
}

.service_btn_main {
    background: #5fbff9;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.service_btn_main:hover {
    background: #5863f8;
    transform: translateY(-2px);
}

.featured_service .service_btn_main {
    background: #5863f8;
}

.featured_service .service_btn_main:hover {
    background: #171d1c;
}

.services_bottom_note {
    text-align: center;
    padding: 30px;
    background: rgba(95, 191, 249, 0.1);
    border-radius: 10px;
    margin-top: 40px;
}

.services_bottom_note p {
    color: #171d1c;
    font-weight: 600;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing_cards_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services_intro_bit h2 {
        font-size: 2.2rem;
    }
    
    .featured_service {
        transform: none;
    }
    
    .card_content_stuff {
        padding: 25px;
    }
    
    .price_amount {
        font-size: 2rem;
    }
}


.contact_form_wrapper {
    padding: 80px 0;
    background: #efe9f4;
}

.form_container_thing {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.contact_intro_bit h2 {
    font-size: 2.5rem;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact_intro_bit p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact_form_area {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input_group {
    display: flex;
    flex-direction: column;
}

.input_group_full {
    margin-bottom: 25px;
}

.input_group label,
.input_group_full label {
    font-weight: 600;
    color: #171d1c;
    margin-bottom: 8px;
    font-size: 15px;
}

.input_group input,
.input_group select,
.input_group_full textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.input_group input:focus,
.input_group select:focus,
.input_group_full textarea:focus {
    outline: none;
    border-color: #5fbff9;
}

.input_group_full textarea {
    width: 100%;
    resize: vertical;
    min-height: 120px;
}

.form_submit_area {
    text-align: center;
    margin-top: 30px;
}

.contact_submit_btn {
    background: #5fbff9;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.contact_submit_btn:hover {
    background: #5863f8;
    transform: translateY(-2px);
}

.form_note {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup_content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.popup_header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup_header h3 {
    margin: 0;
    color: #171d1c;
    font-size: 1.5rem;
    font-weight: 700;
}

.popup_close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_close:hover {
    color: #171d1c;
}

.popup_body {
    padding: 25px;
}

.popup_body p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.popup_body p:last-child {
    margin-bottom: 0;
}

.popup_footer {
    padding: 15px 25px 25px;
    text-align: center;
}

.popup_btn {
    background: #5fbff9;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup_btn:hover {
    background: #5863f8;
}

@media (max-width: 768px) {
    .form_row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact_form_area {
        padding: 30px 20px;
    }
    
    .contact_intro_bit h2 {
        font-size: 2rem;
    }
    
    .popup_content {
        margin: 20px;
    }
}


/* Add this CSS to your existing style.css file */

.tax_refund_hero {
    background: linear-gradient(135deg, #5fbff9 0%, #5863f8 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.refund_hero_content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.tax_refund_hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero_subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.urgency_box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.urgent_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.urgent_text i {
    font-size: 1.5rem;
    color: #fff;
}

.calculator_section {
    padding: 80px 0;
    background: #f8f9fa;
}

.calc_container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.calculator_section h2 {
    font-size: 2.5rem;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 15px;
}

.calculator_section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.quiz_calculator {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.calc_question {
    display: none;
}

.calc_question.active {
    display: block;
}

.calc_question h3 {
    font-size: 1.5rem;
    color: #171d1c;
    margin-bottom: 25px;
    font-weight: 700;
}

.calc_options {
    display: grid;
    gap: 15px;
}

.calc_btn {
    background: #efe9f4;
    border: 2px solid #efe9f4;
    padding: 18px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #171d1c;
}

.calc_btn:hover {
    background: #5fbff9;
    border-color: #5fbff9;
    color: white;
    transform: translateY(-2px);
}

.calc_result {
    display: none;
    text-align: center;
}

.result_content h3 {
    font-size: 1.8rem;
    color: #171d1c;
    margin-bottom: 20px;
}

.refund_amount {
    font-size: 4rem;
    font-weight: 900;
    color: #5fbff9;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.result_content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.claim_now_btn {
    background: #5fbff9;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.claim_now_btn:hover {
    background: #5863f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(95, 191, 249, 0.4);
}

.no_win_text {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.success_cases_area {
    padding: 80px 0;
    background: white;
}

.cases_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.success_cases_area h2 {
    font-size: 2.6rem;
    text-align: center;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 15px;
}

.success_cases_area > p {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

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

.case_card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.case_card:hover {
    transform: translateY(-8px);
}

.case_image {
    height: 180px;
    width: 180px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

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

.refund_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #5fbff9;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.case_content {
    padding: 30px;
}

.case_content h3 {
    font-size: 1.3rem;
    color: #171d1c;
    font-weight: 700;
    margin-bottom: 15px;
}

.case_content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.case_details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail_item {
    background: #efe9f4;
    color: #171d1c;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing_guarantee_section {
    padding: 80px 0;
    background: #efe9f4;
}

.pricing_container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.pricing_guarantee_section h2 {
    font-size: 2.4rem;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 40px;
}

.pricing_card_main {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 3px solid #5fbff9;
}

.price_header h3 {
    font-size: 1.8rem;
    color: #171d1c;
    margin-bottom: 15px;
    font-weight: 700;
}

.price_big {
    font-size: 3.5rem;
    font-weight: 900;
    color: #5fbff9;
    margin-bottom: 10px;
}

.price_condition {
    color: #666;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 16px;
}

.whats_included h4 {
    text-align: left;
    font-size: 1.3rem;
    color: #171d1c;
    margin-bottom: 20px;
    font-weight: 700;
}

.included_list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.included_list li {
    padding: 8px 0;
    color: #171d1c;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.included_list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5fbff9;
    font-weight: 900;
    font-size: 18px;
}

.guarantee_box {
    background: #f8f9fa;
    border: 2px solid #5fbff9;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee_icon {
    color: #5fbff9;
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee_text {
    text-align: left;
}

.guarantee_text strong {
    color: #171d1c;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.guarantee_text p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.start_claim_btn {
    background: #5fbff9;
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.start_claim_btn:hover {
    background: #5863f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(95, 191, 249, 0.4);
}

.cta_note {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tax_refund_hero h1 {
        font-size: 2.2rem;
    }
    
    .hero_subtitle {
        font-size: 1.1rem;
    }
    
    .urgent_text {
        flex-direction: column;
        gap: 10px;
    }
    
    .quiz_calculator {
        padding: 25px;
    }
    
    .refund_amount {
        font-size: 3rem;
    }
    
    .cases_grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee_box {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee_text {
        text-align: center;
    }
}

/* Add this CSS to your existing style.css file */

.about_hero_section {
    background: linear-gradient(135deg, #171d1c 0%, #5863f8 100%);
    padding: 120px 0 80px;
    color: white;
    margin-top: 80px;
}

.about_hero_content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about_hero_section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about_hero_section p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.peter_story_section {
    padding: 80px 0;
    background: white;
}

.story_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story_content_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story_text_area h2 {
    font-size: 2.5rem;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.story_text_area p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.credentials_box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 5px solid #5fbff9;
}

.credentials_box h3 {
    color: #171d1c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.creds_list {
    list-style: none;
    padding: 0;
}

.creds_list li {
    padding: 8px 0;
    color: #171d1c;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.creds_list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5fbff9;
    font-weight: 900;
}

.peter_about_image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.experience_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.stat_item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat_number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #5fbff9;
    margin-bottom: 5px;
}

.stat_label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why_me_section {
    padding: 80px 0;
    background: #efe9f4;
}

.why_me_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.why_me_section h2 {
    font-size: 2.4rem;
    color: #171d1c;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.why_me_section > p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.comparison_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.diy_approach,
.peter_approach {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.diy_approach {
    border-top: 4px solid #ff6b6b;
}

.peter_approach {
    border-top: 4px solid #5fbff9;
}

.diy_approach h3,
.peter_approach h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.diy_approach h3 {
    color: #ff6b6b;
}

.peter_approach h3 {
    color: #5fbff9;
}

.approach_list {
    list-style: none;
    padding: 0;
}

.approach_list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #666;
    font-weight: 500;
}

.diy_approach .approach_list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 900;
    font-size: 18px;
}

.peter_approach .approach_list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5fbff9;
    font-weight: 900;
    font-size: 18px;
}

.testimonials_section {
    padding: 80px 0;
    background: white;
}

.testimonials_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials_section h2 {
    font-size: 2.5rem;
    color: #171d1c;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial_card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #5fbff9;
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial_card p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.client_info {
    color: #171d1c;
    font-weight: 600;
}

.order_form_section {
    padding: 80px 0;
    background: #f8f9fa;
}

.order_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.order_form_section h2 {
    font-size: 2.5rem;
    color: #171d1c;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.order_form_section > p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.order_form_wrapper {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service_selection h3,
.client_details h3 {
    color: #171d1c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service_options {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.service_option {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.service_option:hover {
    border-color: #5fbff9;
    background: #f8fcff;
}

.service_option input[type="radio"] {
    display: none;
}

.service_option input[type="radio"]:checked + .option_content {
    border-left: 4px solid #5fbff9;
    padding-left: 21px;
}

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

.option_header h4 {
    color: #171d1c;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.option_price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #5fbff9;
}

.option_content p {
    color: #666;
    margin-bottom: 15px;
}

.option_features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option_features li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.option_features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5fbff9;
    font-weight: 900;
}

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

.form_group,
.form_group_full {
    display: flex;
    flex-direction: column;
}

.form_group label,
.form_group_full label {
    font-weight: 600;
    color: #171d1c;
    margin-bottom: 8px;
    font-size: 15px;
}

.form_group input,
.form_group_full textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.form_group input:focus,
.form_group_full textarea:focus {
    outline: none;
    border-color: #5fbff9;
}

.form_group_full textarea {
    resize: vertical;
    min-height: 100px;
}

.additional_info {
    margin: 30px 0;
}

.order_summary {
    margin: 30px 0;
}

.summary_box {
    background: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 25px;
}

.summary_box h4 {
    color: #171d1c;
    font-weight: 700;
    margin-bottom: 15px;
}

.summary_line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.summary_line.total {
    border-bottom: none;
    font-weight: 700;
    color: #171d1c;
    font-size: 1.1rem;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #5fbff9;
}

.payment_note {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
    margin-bottom: 0;
}

.form_submit {
    text-align: center;
    margin-top: 30px;
}

.order_submit_btn {
    background: #5fbff9;
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.order_submit_btn:hover {
    background: #5863f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(95, 191, 249, 0.4);
}

.submit_note {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.contact_reminder {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.contact_reminder p {
    margin-bottom: 10px;
}

.contact_reminder p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .story_content_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .experience_stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about_hero_section h1 {
        font-size: 2.2rem;
    }
    
    .story_text_area h2 {
        font-size: 2rem;
    }
    
    .order_form_wrapper {
        padding: 25px;
    }
    
    .form_grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials_grid {
        grid-template-columns: 1fr;
    }
}


/* Legal Pages Shared Styles - Add to your style.css */

.legal_page_wrap {
    padding: 120px 0 60px;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px;
}

.legal_container h1 {
    font-size: 2.5rem;
    color: #171d1c;
    font-weight: 800;
    margin-bottom: 10px;
    border-bottom: 3px solid #5fbff9;
    padding-bottom: 15px;
}

.last_updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 14px;
}

.legal_container h2 {
    font-size: 1.5rem;
    color: #171d1c;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 4px solid #5fbff9;
    padding-left: 15px;
}

.legal_container h3 {
    font-size: 1.2rem;
    color: #171d1c;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal_container p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.legal_container ul,
.legal_container ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal_container li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal_container ul li {
    list-style-type: disc;
}

.legal_container ol li {
    list-style-type: decimal;
}

.legal_container strong {
    color: #171d1c;
    font-weight: 700;
}

@media (max-width: 768px) {
    .legal_container {
        padding: 25px;
        margin: 0 10px;
    }
    
    .legal_container h1 {
        font-size: 2rem;
    }
    
    .legal_container h2 {
        font-size: 1.3rem;
    }
}