*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b6b;
    --contrast: #d81b60;
    --dark: #111827;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --container-max: 1200px;
    --radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1, .heading-primary {
    font-size: 2.5rem;
}

h2, .heading-secondary {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

small, .text-small {
    font-size: 0.875rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--primary-dark);
    outline: none;
}

:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-max);
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    width: 100%;
}

.button {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    color: var(--light);
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.button:hover, .button:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--light);
    transform: translateY(-2px);
}

.topbar {
    background-color: var(--light);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: var(--transition);
    z-index: 100;
}

.topbar--sticky {
    box-shadow: var(--shadow);
}

.topbar_content {
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    cursor: pointer;
    display: none;
    flex-direction: column;
    height: 24px;
    justify-content: space-between;
    width: 30px;
}

.nav-toggle span {
    background-color: var(--primary);
    border-radius: 2px;
    height: 3px;
    transition: var(--transition);
    width: 100%;
}

.nav-toggle--active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.nav-toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mainnav {
    background-color: var(--light);
    position: relative;
}

.mainnav_list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.mainnav_item {
    position: relative;
}

.mainnav_link {
    color: var(--dark);
    display: block;
    font-weight: 600;
    padding: 1rem;
    transition: var(--transition);
}

.mainnav_link:hover, .mainnav_link:focus {
    color: var(--primary);
}

.dropdown_menu {
    background-color: var(--light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 10;
}

.dropdown_menu a {
    color: var(--dark);
    display: block;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.dropdown_menu a:hover, .dropdown_menu a:focus {
    background-color: var(--gray-light);
    color: var(--primary);
}

.dropdown--active .dropdown_menu {
    display: block;
}

.masthead {
    margin-top: 80px;
    position: relative;
}

.masthead_image {
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.masthead_image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.masthead_content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    left: 50%;
    max-width: 600px;
    padding: var(--spacing-md);
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 2;
}

.masthead .heading-primary {
    color: var(--primary);
}

.masthead .heading-secondary {
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.masthead .text {
    margin-bottom: var(--spacing-md);
}

.bottomsec {
    background-color: var(--dark);
    color: var(--light);
    margin-top: var(--spacing-xl);
}

.bottomsec_main {
    background-position: center;
    background-repeat: repeat;
    background-size: 200px;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.bottomsec_main::before {
    background-color: rgba(17, 24, 39, 0.9);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.bottomsec_columns {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.bottomsec_heading {
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    padding-bottom: 0.5rem;
}

.bottomsec_list {
    list-style: none;
}

.bottomsec_list li {
    margin-bottom: 0.5rem;
}

.bottomsec_list a {
    color: var(--gray-light);
    transition: var(--transition);
}

.bottomsec_list a:hover, .bottomsec_list a:focus {
    color: var(--primary-light);
    padding-left: 5px;
}

.bottomsec_bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-sm) 0;
    text-align: center;
}

.copyright {
    color: var(--gray-light);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 991px) {
    .bottomsec_columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    h1, .heading-primary {
        font-size: 2rem;
    }
    
    h2, .heading-secondary {
        font-size: 1.75rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mainnav {
        background-color: var(--light);
        box-shadow: var(--shadow);
        display: none;
        height: 100vh;
        left: 0;
        position: fixed;
        top: 80px;
        width: 300px;
        z-index: 100;
    }
    
    .mainnav--active {
        display: block;
    }
    
    .mainnav_list {
        flex-direction: column;
        padding: var(--spacing-sm);
    }
    
    .mainnav_item {
        margin-bottom: 0.5rem;
    }
    
    .dropdown_menu {
        box-shadow: none;
        position: static;
        width: 100%;
    }
    
    .dropdown_menu a {
        padding-left: 2rem;
    }
    
    .masthead_image {
        height: 80vh;
    }
    
    .masthead_content {
        width: 95%;
    }

    .bottomsec_columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    h1, .heading-primary {
        font-size: 1.75rem;
    }
    
    h2, .heading-secondary {
        font-size: 1.5rem;
    }
    
    .masthead_content {
        padding: var(--spacing-sm);
    }
    
    .mainnav {
        width: 100%;
    }
}


.explore-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.explore-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
}

.explore-content {
    padding: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.explore-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.explore-divider {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.explore-divider span {
    display: inline-block;
    height: 4px;
    background-color: var(--primary);
    margin-right: 8px;
    border-radius: 4px;
}

.explore-divider span:nth-child(1) {
    width: 40px;
}

.explore-divider span:nth-child(2) {
    width: 20px;
}

.explore-divider span:nth-child(3) {
    width: 10px;
}

.explore-text {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.explore-benefits {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.explore-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.benefit-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.8rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.cta-button:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
}

.explore-visual {
    position: relative;
    padding: var(--spacing-md);
}

.visual-decoration {
    position: absolute;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 30px;
}

.visual-decoration.top {
    height: 100px;
    width: 40%;
    top: 0;
    right: 10%;
    transform: rotate(-15deg);
}

.visual-decoration.bottom {
    height: 80px;
    width: 30%;
    bottom: 5%;
    left: 10%;
    transform: rotate(25deg);
}

.visual-decoration.left {
    height: 60%;
    width: 60px;
    left: 0;
    top: 20%;
    transform: rotate(65deg);
}

.visual-decoration.right {
    height: 40%;
    width: 40px;
    right: 5%;
    top: 30%;
    transform: rotate(-45deg);
}

.visual-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 8px solid white;
}

.visual-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.visual-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.visual-container:hover img {
    transform: scale(1.05);
}

.visual-badge {
    position: absolute;
    top: 10%;
    right: -10px;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: rotate(5deg);
    z-index: 2;
}

.badge-text {
    display: block;
    transform: skewX(-10deg);
}

@media (max-width: 991px) {
    .explore-wrapper {
        grid-template-columns: 1fr;
    }
    
    .explore-visual {
        order: -1;
    }
    
    .visual-container {
        transform: perspective(1000px) rotateY(0);
        max-width: 500px;
        margin: 0 auto;
    }
    
    .explore-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .explore-title {
        font-size: 1.8rem;
    }
    
    .visual-container {
        max-width: 100%;
    }
    
    .visual-decoration {
        display: none;
    }
}

.products-showcase {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
    position: relative;
}

.products-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 25%),
                      radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.section-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: var(--spacing-lg);
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.15);
}

.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-meta {
    margin-bottom: 20px;
    margin-top: auto;
}

.product-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: #e9ecef;
    color: var(--gray);
}

.product-badge.best {
    background-color: #fdecb4;
    color: #d97706;
}

.product-badge.premium {
    background-color: #c8b6ff;
    color: #6d28d9;
}

.product-badge.new {
    background-color: #a7f3d0;
    color: #047857;
}

.product-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.product-link:hover {
    background-color: var(--primary);
    color: white;
}

.view-more-container {
    text-align: center;
}

.view-more-button {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-more-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.view-more-button:hover {
    color: white;
}

.view-more-button:hover::before {
    width: 100%;
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
}

.process-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    position: relative;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.process-title {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.process-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.process-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.process-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: var(--spacing-lg);
}

.process-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.2);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(230, 57, 70, 0.1);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1;
}

.card-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.card-text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-cta {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.process-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.process-button:hover {
    background-color: transparent;
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .process-title {
        font-size: 1.8rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .process-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .process-cards {
        grid-template-columns: 1fr;
    }
    
    .card-number {
        font-size: 2.5rem;
    }
}

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
    position: relative;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 30%, rgba(230, 57, 70, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 70%, rgba(230, 57, 70, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.testimonials-title {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.testimonials-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.testimonials-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.4s ease;
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-content {
    padding: 30px 25px 20px;
    position: relative;
    flex-grow: 1;
}

.quote-mark {
    font-size: 4rem;
    position: absolute;
    top: 5px;
    left: 15px;
    line-height: 1;
    color: rgba(230, 57, 70, 0.08);
    font-family: Georgia, serif;
    font-weight: bold;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    background-color: #f8f9fa;
    padding: 15px 25px;
    border-top: 1px solid #f0f0f0;
}

.author-name {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 3px;
    font-weight: 600;
}

.author-location {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 25px 20px 15px;
    }
    
    .testimonial-author {
        padding: 12px 20px;
    }
}

.update-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    position: relative;
}

.update-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: center;
}

.update-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.update-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.update-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    border: 3px solid white;
}

.update-badge span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.update-content {
    padding: var(--spacing-md) 0;
}

.update-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.update-divider {
    margin-bottom: var(--spacing-md);
}

.update-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.update-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: var(--spacing-md);
}

.info-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.info-header {
    margin-bottom: 15px;
}

.info-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
}

.info-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.update-schedule {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.schedule-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
    position: relative;
}

.schedule-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: #e5e7eb;
}

.schedule-time {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.schedule-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.update-action {
    text-align: center;
    margin-top: var(--spacing-md);
}

.subscribe-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.subscribe-button:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .update-wrapper {
        grid-template-columns: 1fr;
    }
    
    .update-visual {
        min-height: 400px;
        order: -1;
    }
    
    .update-title {
        font-size: 2rem;
    }
    
    .update-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .update-title {
        font-size: 1.8rem;
    }
    
    .update-schedule {
        flex-direction: column;
    }
    
    .schedule-item {
        padding: 15px 0;
    }
    
    .schedule-item:not(:last-child)::after {
        right: 50%;
        top: 100%;
        transform: translateX(50%);
        height: 1px;
        width: 70%;
    }
}

.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    position: relative;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.contact-title {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.contact-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.contact-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a1a1aa;
}

.error-message {
    display: none;
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 5px;
    position: absolute;
    left: 0;
    bottom: -20px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--primary);
    margin-top: 30px;
}

.submit-button:hover {
    background-color: white;
    color: var(--primary);
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.popup-active .popup-content {
    transform: translateY(0);
}

.popup-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.popup-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

.close-popup {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.close-popup:hover {
    background-color: white;
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .popup-content {
        padding: 30px;
    }
    
    .popup-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 479px) {
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .popup-content {
        padding: 25px 20px;
    }
}

/* Terms Page Styles - Add to styles.css */

.terms-page {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background-color: #fff;
}

.terms-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.terms-title {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.terms-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.terms-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.terms-updated {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.terms-section {
    margin-bottom: var(--spacing-lg);
}

.terms-section h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.terms-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--gray);
}

.terms-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.contact-email {
    margin-top: var(--spacing-sm);
    font-weight: 600;
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .terms-title {
        font-size: 2.2rem;
    }
    
    .terms-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .terms-title {
        font-size: 1.8rem;
    }
    
    .terms-content {
        padding: 25px 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}

/* Privacy Page Styles - Add to styles.css */

.privacy-page {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background-color: #fff;
}

.privacy-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.privacy-title {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.privacy-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.privacy-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.privacy-updated {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: var(--spacing-lg);
}

.privacy-section h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.privacy-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--gray);
}

.privacy-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.contact-email {
    margin-top: var(--spacing-sm);
    font-weight: 600;
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .privacy-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* Cookies Page Styles - Add to styles.css */

.cookies-page {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background-color: #fff;
}

.cookies-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.cookies-title {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.cookies-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.cookies-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.cookies-updated {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.cookies-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cookies-section {
    margin-bottom: var(--spacing-lg);
}

.cookies-section h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.cookies-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.cookies-section p:last-child {
    margin-bottom: 0;
}

.cookies-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--gray);
}

.cookies-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookies-list li:last-child {
    margin-bottom: 0;
}

.cookies-list a {
    word-break: break-all;
}

.contact-email {
    margin-top: var(--spacing-sm);
    font-weight: 600;
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cookies-title {
        font-size: 2.2rem;
    }
    
    .cookies-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .cookies-title {
        font-size: 1.8rem;
    }
    
    .cookies-content {
        padding: 25px 20px;
    }
    
    .cookies-section h2 {
        font-size: 1.3rem;
    }
}

/* About Page Styles - Add to styles.css */

.about-page {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background-color: #fff;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.about-title {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.about-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.about-divider span {
    display: inline-block;
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    margin-bottom: var(--spacing-lg);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(230, 57, 70, 0.05) 0%, rgba(230, 57, 70, 0.2) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: var(--spacing-sm) 0;
}

.about-section {
    margin-bottom: var(--spacing-md);
}

.about-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.about-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-list {
    list-style-type: none;
    margin-bottom: 15px;
}

.about-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: var(--gray);
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.about-list li strong {
    color: var(--dark);
    font-weight: 600;
}

.founders-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: var(--spacing-sm);
}

.founder {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.founder h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.founder p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-section {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.contact-section p {
    color: var(--gray);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 15px;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .founders-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-section {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .about-image {
        height: 300px;
    }
    
    .founder {
        padding: 20px;
    }
    
    .contact-section {
        padding: 25px 20px;
    }
    
    .contact-email {
        font-size: 1.1rem;
    }
}