:root {
    --primary-color: #e7615a;
    --primary-dark: #b43d37;
    --white: #fff;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --transition: all 0.3s ease;
}
.policy-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}
.policy-header {
    margin-bottom: 40px;
    text-align: center;
}
.policy-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.policy-content {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}
.policy-content h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}
.policy-content h4 {
    color: var(--dark-gray);
    font-size: 1.4rem;
    margin: 25px 0 12px;
}
.policy-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}
.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}
.policy-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.policy-content ul li:before {
    color: var(--primary-color);
    content: "•";
    left: 0;
    position: absolute;
}
.cookie-table {
    background-color: var(--white);
    border-collapse: collapse;
    margin: 20px 0;
    width: 100%;
}
.cookie-table td,
.cookie-table th {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}
.cookie-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}
.cookie-table tr:nth-child(2n) {
    background-color: var(--light-gray);
}
.cookie-table tr:hover {
    background-color: rgba(231, 97, 90, 0.1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: var(--white);
    color: var(--dark-gray);
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
    width: 90%;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
}
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 15px;
}
.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}
.main-nav {
    display: flex;
}
.main-nav li {
    margin-left: 20px;
}
.main-nav a {
    border-radius: 4px;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 5px 10px;
    transition: var(--transition);
}
.main-nav a.active,
.main-nav a:hover {
    background-color: rgba(231, 97, 90, 0.1);
    color: var(--primary-color);
}
.language-selector select {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 10px;
}
.mobile-menu-btn {
    color: var(--primary-color);
    cursor: pointer;
    display: none;
    font-size: 1.5rem;
}
.hero {
    background: linear-gradient(rgba(180, 61, 55, 0.8), rgba(231, 97, 90, 0.8));
    background-position: 50%;
    background-size: cover;
    color: var(--white);
    overflow: hidden;
    padding: 120px 0 80px;
    position: relative;
    text-align: center;
}
.particles-container {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.hero-content {
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    z-index: 2;
}
.hero-title {
    animation: fadeInUp 1s ease;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-subtitle {
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.hero-buttons {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.cta-button {
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    overflow: hidden;
    padding: 14px 30px;
    position: relative;
    transition: var(--transition);
    z-index: 1;
}
.cta-button:before {
    background-color: rgba(0, 0, 0, 0.1);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease;
    width: 0;
    z-index: -1;
}
.cta-button:hover:before {
    width: 100%;
}
.primary-btn {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}
.primary-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.secondary-btn:hover {
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    transform: translateY(-5px);
}
.hero-wave {
    bottom: 0;
    left: 0;
    line-height: 0;
    position: absolute;
    width: 100%;
    z-index: 3;
}
.hero-wave svg {
    height: auto;
    width: 100%;
}
.roadmap-section {
    background-color: var(--light-gray);
    padding: 100px 0;
    position: relative;
}
.roadmap-section h2 {
    color: var(--primary-dark);
    margin-bottom: 60px;
    text-align: center;
}
.roadmap-container {
    margin: 0 auto;
    max-width: 1000px;
    padding: 40px 0;
    position: relative;
}
.roadmap-line {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
}
.roadmap-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    position: relative;
    transition: all 0.5s ease;
    width: 45%;
}
.roadmap-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}
.roadmap-item:before {
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(231, 97, 90, 0.3);
    content: "";
    height: 20px;
    position: absolute;
    top: 20px;
    width: 20px;
    z-index: 1;
}
.roadmap-item:nth-child(odd) {
    left: 0;
}
.roadmap-item:nth-child(2n) {
    left: 55%;
}
.roadmap-item:nth-child(odd):before {
    right: -60px;
}
.roadmap-item:nth-child(2n):before {
    left: -60px;
}
.roadmap-date {
    background-color: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(231, 97, 90, 0.3);
    color: var(--white);
    font-weight: 700;
    padding: 8px 20px;
    position: absolute;
    top: -15px;
}
.roadmap-item:nth-child(odd) .roadmap-date {
    right: 20px;
}
.roadmap-item:nth-child(2n) .roadmap-date {
    left: 20px;
}
.roadmap-content {
    padding: 40px 30px 30px;
}
.roadmap-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.roadmap-item.future {
    background-color: hsla(0, 0%, 100%, 0.8);
    border: 2px dashed var(--primary-color);
}
.roadmap-item.future:before {
    background-color: var(--light-gray);
    border: 2px solid var(--primary-color);
}
.solution-demo {
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    padding: 100px 0;
}
.solution-demo h2 {
    color: var(--primary-dark);
    margin-bottom: 60px;
    text-align: center;
}
.video-container {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}
.video-container:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}
.video-container:before {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.video-wrapper {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.video-wrapper iframe,
.video-wrapper video {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.solution-description {
    margin: 40px auto 0;
    max-width: 800px;
    text-align: center;
}
.solution-description h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.solution-description p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}
.solution-cta {
    margin-top: 30px;
}
.solution-cta .cta-button {
    background-color: var(--primary-color);
    border: none;
    box-shadow: 0 5px 15px rgba(231, 97, 90, 0.3);
    color: var(--white);
    font-size: 1.1rem;
    padding: 12px 30px;
}
.link-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.link-card:before {
    background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-dark) 100%);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: -1;
}
.link-card:hover:before {
    opacity: 1;
}
.card-icon-wrapper {
    align-items: center;
    background-color: rgba(231, 97, 90, 0.1);
    border-radius: 50%;
    display: flex;
    height: 70px;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s ease;
    width: 70px;
}
.link-card:hover .card-icon-wrapper {
    background-color: hsla(0, 0%, 100%, 0.2);
    transform: scale(1.1) rotate(10deg);
}
.footer-wave {
    line-height: 0;
    position: relative;
    top: 1px;
    width: 100%;
}
.footer-wave svg {
    height: auto;
    width: 100%;
}
@media (max-width: 992px) {
    .roadmap-item {
        left: 0 !important;
        margin-left: 60px;
        width: 80%;
    }
    .roadmap-item:before {
        left: -40px !important;
        right: auto !important;
    }
    .roadmap-line {
        left: 40px;
    }
    .roadmap-item:nth-child(2n) .roadmap-date,
    .roadmap-item:nth-child(odd) .roadmap-date {
        left: 20px;
        right: auto;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-buttons {
        align-items: center;
        flex-direction: column;
    }
    .cta-button {
        margin-bottom: 10px;
        width: 80%;
    }
    .roadmap-item {
        margin-left: 60px;
        width: calc(100% - 60px);
    }
}
.odd-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}
.odd-section h2 {
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: center;
}
.odd-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.odd-item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}
.odd-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}
.odd-icon {
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    margin: 0 auto 20px;
    width: 60px;
}
.odd-2 {
    background-color: #d3a029;
}
.odd-3 {
    background-color: #4c9f38;
}
.odd-12 {
    background-color: #bf8b2e;
}
.odd-13 {
    background-color: #48773e;
}
.odd-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.quick-links {
    padding: 80px 0;
}
.quick-links h2 {
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: center;
}
.links-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.link-card {
    align-items: center;
    background-color: var(--light-gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}
.link-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}
.link-card i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0;
    transition: var(--transition);
}
.link-card:hover i {
    color: var(--white);
}
.link-card h3 {
    margin-bottom: 10px;
}
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 40px;
}
.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}
.footer-contact h3,
.footer-links h3,
.footer-social h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    transition: var(--transition);
}
.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    align-items: center;
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 50%;
    display: flex;
    height: 40px;
    justify-content: center;
    transition: var(--transition);
    width: 40px;
}
.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    justify-content: space-between;
    padding-top: 20px;
    text-align: center;
}
.footer-bottom a {
    color: var(--primary-color);
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.solution-overview {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}
.partnership-section,
.solution-overview {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    overflow: hidden;
    padding: 40px;
    position: relative;
}
.partnership-section {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.partnership-section:hover {
    box-shadow: 0 20px 50px rgba(180, 61, 55, 0.15);
    transform: translateY(-5px);
}
.partnership-section:before {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.partnership-section h3 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}
.partnership-section h3:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 60px;
}
.partnership-content {
    align-items: center;
    display: flex;
    gap: 40px;
}
.partnership-logo {
    flex: 0 0 40%;
    text-align: center;
}
.partnership-logo img {
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}
.partnership-logo img:hover {
    transform: scale(1.05);
}
.partnership-text {
    flex: 0 0 60%;
}
.partnership-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .partnership-content {
        flex-direction: column;
        gap: 20px;
    }
    .partnership-logo,
    .partnership-text {
        flex: 0 0 100%;
    }
    .solution-overview {
        grid-template-columns: 1fr;
    }
    .solution-img {
        display: none;
    }
}
.solution-overview:before {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.solution-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}
.solution-img img {
    height: auto;
    transition: var(--transition);
    width: 100%;
}
.solution-img:hover img {
    transform: scale(1.05);
}
.solution-content h3 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}
.solution-content h3:after {
    background-color: var(--primary-color);
    bottom: -8px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
}
.solution-content p {
    line-height: 1.7;
    margin-bottom: 15px;
}
.solution-features {
    margin-bottom: 60px;
}
.solution-features h3 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}
.solution-features h3:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 60px;
}
.features-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature-item {
    background-color: var(--white);
    border-bottom: 3px solid transparent;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: var(--transition);
}
.feature-item:hover {
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(180, 61, 55, 0.15);
    transform: translateY(-10px);
}
.feature-icon {
    align-items: center;
    background-color: rgba(231, 97, 90, 0.1);
    border-radius: 50%;
    display: flex;
    height: 70px;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    width: 70px;
}
.feature-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
}
.feature-item:hover .feature-icon i {
    color: var(--white);
    transform: rotateY(180deg);
}
.feature-content h4 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}
.how-it-works {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    padding: 40px 30px;
}
.how-it-works h3 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
}
.how-it-works h3:after {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    bottom: 0;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
}
.steps-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 40px;
}
.step-item {
    background-color: var(--white);
    border-radius: 15px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 35px 25px;
    position: relative;
    text-align: center;
    transition: var(--transition);
    z-index: 1;
}
.step-item:before {
    background: linear-gradient(180deg, rgba(231, 97, 90, 0.1), transparent);
    border-radius: 12px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: var(--transition);
    width: 100%;
    z-index: -1;
}
.step-item:hover {
    box-shadow: 0 15px 40px rgba(180, 61, 55, 0.15);
    transform: translateY(-10px);
}
.step-item:hover:before {
    height: 100%;
}
.step-number {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(231, 97, 90, 0.3);
    color: var(--white);
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    width: 60px;
}
.step-item:hover .step-number {
    box-shadow: 0 8px 20px rgba(231, 97, 90, 0.5);
    transform: scale(1.1) rotate(5deg);
}
.step-item h4 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    position: relative;
}
.step-item h4:after {
    background-color: var(--primary-color);
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 40px;
}
.step-item p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}
.legal-disclaimer,
.notes-section {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    padding: 30px;
    position: relative;
}
.notes-section {
    border-left: 5px solid #ffd166;
}
.legal-disclaimer {
    border-left: 5px solid #6c757d;
}
.legal-disclaimer h4,
.notes-section h4 {
    align-items: center;
    color: var(--primary-dark);
    display: flex;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.notes-section h4:before {
    color: #ffd166;
    content: "\f05a";
}
.legal-disclaimer h4:before,
.notes-section h4:before {
    font-family: Font Awesome\5 Free;
    font-size: 1.4rem;
    font-weight: 900;
    margin-right: 12px;
}
.legal-disclaimer h4:before {
    color: #6c757d;
    content: "\f0e3";
}
.notes-section ul {
    padding-left: 10px;
}
.notes-section ul li {
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}
.notes-section ul li:before {
    color: #ffd166;
    content: "\f00c";
    font-family: Font Awesome\5 Free;
    font-size: 1.1rem;
    font-weight: 900;
    left: 0;
    position: absolute;
}
.legal-disclaimer p {
    background-color: hsla(208, 7%, 46%, 0.05);
    border-radius: 8px;
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
    padding: 15px;
}
.support-info {
    background-color: #e8f4f8;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 40px 0 20px;
    padding: 25px;
    text-align: center;
}
.support-info p {
    align-items: center;
    color: #2a7da2;
    display: flex;
    font-size: 1.1rem;
    font-weight: 500;
    justify-content: center;
}
.support-info p:before {
    color: #2a7da2;
    content: "\f095";
    font-family: Font Awesome\5 Free;
    font-weight: 900;
    margin-right: 12px;
}
.cta-section {
    background-color: rgba(231, 97, 90, 0.05);
    border-radius: 12px;
    margin-top: 60px;
    padding: 60px 40px;
    text-align: center;
}
.cta-section h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.1rem;
    margin: 0 auto 30px;
    max-width: 600px;
}
.cta-section .cta-button {
    font-size: 1.1rem;
    padding: 15px 40px;
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .main-nav {
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        left: 0;
        padding: 20px;
        position: absolute;
        top: 70px;
        width: 100%;
        z-index: 1000;
    }
    .main-nav.active {
        display: flex;
    }
    .main-nav li {
        margin: 10px 0;
    }
    .hero {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 576px) {
    .links-grid,
    .odd-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .cta-button {
        padding: 10px 20px;
    }
}
.about-section {
    background: linear-gradient(to bottom, var(--white) 0, hsla(0, 0%, 96%, 0.5) 100%);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}
.about-section:before {
    animation: pulse 15s infinite alternate;
    right: -100px;
    top: -100px;
}
.about-section:after,
.about-section:before {
    background-color: rgba(231, 97, 90, 0.08);
    border-radius: 50%;
    content: "";
    height: 300px;
    position: absolute;
    width: 300px;
    z-index: -1;
}
.about-section:after {
    animation: pulse 15s infinite alternate-reverse;
    bottom: -100px;
    left: -100px;
}
@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    to {
        opacity: 0.8;
        transform: scale(1.2);
    }
}
.about-header {
    animation: fadeInDown 1s ease;
    margin-bottom: 70px;
    position: relative;
    text-align: center;
}
.about-header h2 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.8rem;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}
.about-header h2:after {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    bottom: -12px;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: var(--transition);
    width: 100px;
}
.about-header h2:hover:after {
    width: 120px;
}
.about-header p {
    color: rgba(51, 51, 51, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}
.about-story {
    background-color: var(--white);
    border-left: 5px solid var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    padding: 50px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}
.about-story:hover {
    box-shadow: 0 20px 50px rgba(180, 61, 55, 0.15);
}
.about-story h3 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}
.about-story h3:after {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 80px;
}
.about-story h3:hover:after {
    width: 100%;
}
.about-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-story ul {
    margin: 20px 0;
    padding-left: 20px;
}
.about-story ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.about-story ul li:before {
    color: var(--primary-color);
    content: "✓";
    font-weight: 700;
    left: 0;
    position: absolute;
}
.team-title {
    animation: fadeInUp 1s ease;
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}
.team-title:after {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    bottom: -12px;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    width: 80px;
}
.team-title:hover:after {
    width: 100px;
}
.team-description {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    padding: 25px 30px;
    text-align: center;
    border: 1px solid rgba(231, 97, 90, 0.1);
    animation: fadeInUp 1s ease;
    position: relative;
}

.team-description p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.team-description p:last-child {
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 100px;
}
.team-member {
    background-color: var(--white);
    border: 1px solid rgba(231, 97, 90, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.team-member:hover {
    border-color: rgba(231, 97, 90, 0.4);
    box-shadow: 0 25px 50px rgba(180, 61, 55, 0.2);
    transform: translateY(-15px) scale(1.02);
}
.team-member:before {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    width: 100%;
    z-index: 1;
}
.team-member:hover:before {
    transform: scaleX(1);
}
.member-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}
.member-img:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
    bottom: 0;
    content: "";
    height: 50%;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    width: 100%;
}
.team-member:hover .member-img:after {
    opacity: 1;
}
.member-img img {
    filter: brightness(0.95);
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}
.team-member:hover .member-img img {
    filter: brightness(1.05);
    transform: scale(1.15) rotate(2deg);
}
.member-info {
    background-color: var(--white);
    padding: 30px;
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease;
}
.team-member:hover .member-info {
    background-color: hsla(0, 0%, 96%, 0.5);
}
.member-info:before {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    content: "";
    height: 3px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    transition: all 0.4s ease;
    width: 60px;
}
.team-member:hover .member-info:before {
    opacity: 1;
    width: 80px;
}
.member-info h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.member-role,
.team-member:hover .member-info h3 {
    color: var(--primary-color);
}
.member-role {
    background-color: rgba(231, 97, 90, 0.1);
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(231, 97, 90, 0.1);
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 6px 18px;
    transition: all 0.3s ease;
}
.team-member:hover .member-role {
    background-color: rgba(231, 97, 90, 0.2);
    box-shadow: 0 5px 15px rgba(231, 97, 90, 0.2);
    transform: translateY(-3px);
}
.fun-fact {
    background-color: rgba(231, 97, 90, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-style: italic;
    margin-top: 20px;
    padding: 15px 20px;
    position: relative;
    transition: all 0.3s ease;
}
.team-member:hover .fun-fact {
    background-color: rgba(231, 97, 90, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}
.values-section {
    background: linear-gradient(135deg, var(--light-gray) 0, hsla(0, 0%, 96%, 0.8) 50%, var(--white) 100%);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}
.values-section:before {
    animation: float 15s ease-in-out infinite;
    height: 200px;
    right: -50px;
    top: -50px;
    width: 200px;
}
.values-section:after,
.values-section:before {
    background-color: rgba(231, 97, 90, 0.05);
    border-radius: 50%;
    content: "";
    position: absolute;
    z-index: 0;
}
.values-section:after {
    animation: float 20s ease-in-out infinite reverse;
    bottom: -80px;
    height: 250px;
    left: -80px;
    width: 250px;
}
@keyframes float {
    0% {
        transform: translate(0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 30px) rotate(5deg);
    }
    to {
        transform: translate(0) rotate(0deg);
    }
}
.values-section h2 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}
.values-section h2:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
}
.values-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.value-item {
    backdrop-filter: blur(5px);
    background-color: var(--white);
    border-bottom: 4px solid transparent;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 50px 35px;
    position: relative;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}
.value-item:before {
    background: linear-gradient(180deg, rgba(231, 97, 90, 0.08), rgba(231, 97, 90, 0.02));
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: height 0.5s ease;
    width: 100%;
    z-index: -1;
}
.value-item:hover {
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(180, 61, 55, 0.15);
    transform: translateY(-15px) scale(1.03);
}
.value-item:hover:before {
    height: 100%;
}
.value-item i {
    background: rgba(231, 97, 90, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    display: inline-block;
    font-size: 3.5rem;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    width: 100px;
}
.value-item:hover i {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 25px rgba(180, 61, 55, 0.3);
    color: var(--white);
    transform: scale(1.1) rotateY(180deg);
}
.value-item h3 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    transition: color 0.3s ease;
}
.value-item h3:after {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: all 0.4s ease;
    width: 50px;
}
.value-item:hover h3 {
    color: var(--primary-color);
}
.value-item:hover h3:after {
    box-shadow: 0 2px 5px rgba(231, 97, 90, 0.3);
    height: 4px;
    width: 80px;
}
.value-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    transition: all 0.3s ease;
}
.value-item:hover p {
    transform: translateY(-5px);
}
.awards-section {
    background-color: var(--white);
    background: linear-gradient(to right, var(--white), hsla(0, 0%, 96%, 0.5), var(--white));
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}
.awards-section:before {
    background: radial-gradient(circle at 20% 30%, rgba(231, 97, 90, 0.05) 0, transparent 50%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}
.awards-section h2 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}
.awards-section h2:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
}
.awards-carousel {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 0;
    position: relative;
}
@media (max-width: 992px) {
    .awards-carousel {
        grid-template-columns: 1fr;
    }
}
.awards-carousel::-webkit-scrollbar {
    display: none;
}
.award-item {
    background-color: var(--white);
    border: 1px solid rgba(231, 97, 90, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.award-item:before {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    transition: width 0.3s ease;
    width: 5px;
}
.award-item:hover {
    border-color: rgba(231, 97, 90, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-15px) scale(1.02);
}
.award-item:hover:before {
    width: 8px;
}
.award-item h3 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 18px;
    padding-bottom: 8px;
    position: relative;
    transition: color 0.3s ease;
}
.award-item h3:after {
    background-color: var(--primary-color);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: width 0.4s ease;
    width: 0;
}
.award-item:hover h3 {
    color: var(--primary-color);
}
.award-item:hover h3:after {
    width: 100%;
}
.award-date {
    background-color: rgba(231, 97, 90, 0.1);
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(231, 97, 90, 0.1);
    color: var(--primary-color);
    display: inline-block;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}
.award-item:hover .award-date {
    background-color: rgba(231, 97, 90, 0.2);
    box-shadow: 0 8px 20px rgba(231, 97, 90, 0.15);
    transform: translateY(-5px);
}
.award-item p {
    line-height: 1.7;
    transition: all 0.3s ease;
}
.award-item:hover p {
    transform: translateY(-3px);
}
.animate-on-scroll {
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.problem-section {
    padding: 80px 0;
}
.problem-header {
    margin-bottom: 60px;
    text-align: center;
}
.problem-header h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.problem-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.problem-item {
    display: flex;
    flex-direction: column;
}
.problem-img {
    border-radius: 8px;
    height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
}
.problem-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.problem-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.odd-connection {
    background-color: var(--light-gray);
    margin-top: 80px;
    padding: 60px 0;
    text-align: center;
}
.odd-connection h2 {
    color: var(--primary-dark);
    margin-bottom: 40px;
}
.odd-connection-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.solution-section {
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}
.solution-section:before {
    right: -100px;
    top: -100px;
}
.solution-section:after,
.solution-section:before {
    background-color: rgba(231, 97, 90, 0.05);
    border-radius: 50%;
    content: "";
    height: 300px;
    position: absolute;
    width: 300px;
    z-index: -1;
}
.solution-section:after {
    bottom: -100px;
    left: -100px;
}
.solution-header {
    animation: fadeInUp 1s ease;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}
.solution-header h2 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}
.solution-header h2:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
}
.solution-header p {
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 700px;
}
.product-generations {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 80px;
}
.product-gen {
    background-color: var(--white);
    border: 1px solid rgba(231, 97, 90, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
}
.product-gen:hover {
    border-color: rgba(231, 97, 90, 0.3);
    box-shadow: 0 20px 40px rgba(180, 61, 55, 0.15);
    transform: translateY(-15px);
}
.product-img {
    border-radius: 8px 8px 0 0;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.product-img:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent);
    bottom: 0;
    content: "";
    height: 30%;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: var(--transition);
    width: 100%;
}
.product-gen:hover .product-img:after {
    opacity: 1;
}
.product-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}
.product-gen:hover .product-img img {
    transform: scale(1.05);
}
.product-info {
    background-color: var(--white);
    border-radius: 0 0 8px 8px;
    padding: 25px;
    position: relative;
    z-index: 1;
}
.product-info:before {
    background-color: var(--primary-color);
    content: "";
    height: 3px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    transition: var(--transition);
    width: 50px;
}
.product-gen:hover .product-info:before {
    opacity: 1;
}
.product-info h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition);
}
.product-features {
    margin-top: 20px;
}
.product-features li {
    align-items: flex-start;
    border-bottom: 1px dashed rgba(231, 97, 90, 0.1);
    display: flex;
    margin-bottom: 15px;
    padding: 8px 0;
    transform: translateX(0);
    transition: var(--transition);
}
.product-features li:last-child {
    border-bottom: none;
}
.product-gen:hover .product-features li {
    transform: translateX(5px);
}
.product-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 5px;
    transition: var(--transition);
}
.product-gen:hover .product-features li i {
    transform: scale(1.2);
}
.shop-section {
    padding: 80px 0;
}
.disclaimer-section {
    margin: 40px 0;
    text-align: center;
}
.disclaimer-info {
    background-color: rgba(231, 97, 90, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    margin: 0 auto 20px;
    max-width: 800px;
    padding: 15px 20px;
}
.disclaimer-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}
.disclaimer-btn {
    background-color: var(--primary-color);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--white);
    display: inline-block;
    font-weight: 600;
    padding: 14px 30px;
    transition: var(--transition);
}
.disclaimer-btn:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.shop-header {
    margin-bottom: 60px;
    text-align: center;
}
.shop-header h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.products-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
}
.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}
.product-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.product-card-img img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    width: 100%;
}
.product-card:hover .product-card-img img {
    transform: scale(1.08);
}
.product-card-img:after {
    background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.1));
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: var(--transition);
    width: 100%;
}
.product-card:hover .product-card-img:after {
    opacity: 1;
}
.product-badge {
    background-color: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(180, 61, 55, 0.2);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    position: absolute;
    right: 15px;
    top: 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
    z-index: 1;
}
.product-card:hover .product-badge {
    transform: translateY(-3px);
}
.product-card-info {
    padding: 25px;
    position: relative;
    z-index: 1;
}
.product-card-info:before {
    background-color: var(--primary-color);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: var(--transition);
    width: 100%;
}
.product-card:hover .product-card-info:before {
    opacity: 1;
}
.product-card-info h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: var(--transition);
}
.product-card:hover .product-card-info h3,
.product-price {
    color: var(--primary-color);
}
.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition);
}
.product-card:hover .product-price {
    transform: scale(1.05);
}
.product-description {
    line-height: 1.6;
    margin-bottom: 20px;
}
.add-to-cart-btn,
.buy-button {
    background-color: var(--primary-color);
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(180, 61, 55, 0.2);
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    margin-top: 20px;
    overflow: hidden;
    padding: 14px 20px;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 1;
}
.add-to-cart-btn:before,
.buy-button:before {
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.2), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.4s ease;
    width: 100%;
    z-index: -1;
}
.add-to-cart-btn:hover,
.buy-button:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(180, 61, 55, 0.3);
    transform: translateY(-3px);
}
.add-to-cart-btn:hover:before,
.buy-button:hover:before {
    left: 100%;
}
.ucl-badge {
    background-color: var(--light-gray);
    border-radius: 4px;
    color: var(--dark-gray);
    display: inline-block;
    font-size: 0.8rem;
    margin-top: 15px;
    padding: 5px 10px;
}
.ucl-badge i {
    margin-right: 5px;
}
.testimonials {
    margin-top: 80px;
    padding: 40px 0;
    position: relative;
}
.testimonials:before {
    background-color: rgba(231, 97, 90, 0.05);
    border-radius: 50%;
    content: "";
    height: 200px;
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    z-index: -1;
}
.testimonials h3 {
    color: var(--primary-dark);
    display: inline-block;
    left: 50%;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    transform: translateX(-50%);
}
.testimonials h3:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 60px;
}
.testimonials-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 30px;
}
.testimonial-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 30px;
    position: relative;
}
.testimonial-item:before {
    color: rgba(231, 97, 90, 0.1);
    content: "\201C";
    font-family: serif;
    font-size: 4rem;
    left: 20px;
    line-height: 1;
    position: absolute;
    top: 20px;
}
.testimonial-item:hover {
    box-shadow: 0 15px 30px rgba(180, 61, 55, 0.1);
    transform: translateY(-10px);
}
.testimonial-rating {
    margin-bottom: 15px;
}
.testimonial-rating i {
    color: gold;
    margin-right: 2px;
}
.testimonial-item p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    color: var(--primary-dark);
    font-weight: 600;
    position: relative;
    text-align: right;
}
.testimonial-author:before {
    background-color: var(--primary-color);
    bottom: -5px;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    width: 40px;
}
.shipping-info {
    background-color: rgba(231, 97, 90, 0.03);
    border-radius: 12px;
    margin-top: 80px;
    overflow: hidden;
    padding: 40px;
    position: relative;
}
.shipping-info:before {
    background-color: rgba(231, 97, 90, 0.05);
    border-radius: 50%;
    bottom: -50px;
    content: "";
    height: 200px;
    left: -50px;
    position: absolute;
    width: 200px;
    z-index: 0;
}
.shipping-info h3 {
    color: var(--primary-dark);
    display: inline-block;
    left: 50%;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    transform: translateX(-50%);
}
.shipping-info h3:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 60px;
}
.shipping-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.shipping-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 1;
}
.shipping-item:hover {
    box-shadow: 0 15px 30px rgba(180, 61, 55, 0.1);
    transform: translateY(-8px);
}
.shipping-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.shipping-item:hover i {
    transform: scale(1.2);
}
.shipping-item h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.shipping-item p {
    color: var(--primary-color);
    line-height: 1.6;
    margin-right: 5px;
}
.contact-section,
.faq-section {
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}
.faq-section {
    background-color: var(--light-gray);
}
.faq-section:before {
    background-color: rgba(231, 97, 90, 0.1);
    height: 200px;
    right: -50px;
    top: -50px;
    width: 200px;
}
.contact-header,
.faq-header {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
    z-index: 1;
}
.contact-header h2,
.faq-header h2 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}
.contact-header h2:after,
.faq-header h2:after {
    background-color: var(--primary-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
}
.contact-header p,
.faq-header p {
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 700px;
}
.faq-container {
    max-width: 800px;
}
.faq-item {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.faq-question {
    background-color: var(--white);
    font-weight: 600;
    padding: 20px;
}
.faq-question:hover {
    background-color: rgba(231, 97, 90, 0.05);
}
.faq-question h3 {
    font-size: 1.1rem;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    background-color: var(--white);
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
    line-height: 1.6;
    margin: 0;
}
.faq-answer.active {
    border-top: 1px solid rgba(231, 97, 90, 0.1);
    max-height: 500px;
    padding: 0 20px 20px;
}
.contact-grid {
    gap: 40px;
    grid-template-columns: 1fr 1.5fr;
    margin: 0 auto;
    max-width: 1100px;
}
.contact-info {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
}
.contact-method {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-align: center;
    transition: var(--transition);
}
.contact-method:after {
    background-color: var(--primary-color);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    width: 100%;
}
.contact-method:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.contact-method i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}
.contact-method h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.social-contact {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    grid-column: span 2;
    padding: 20px;
    text-align: center;
}
.social-contact h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.social-contact .social-icons {
    justify-content: center;
}
.social-contact .social-icons a {
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-size: 1.2rem;
}
.social-contact .social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.contact-form {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}
.contact-form:before {
    background-color: rgba(231, 97, 90, 0.1);
    border-radius: 50%;
    bottom: -15px;
    content: "";
    height: 100px;
    position: absolute;
    right: -15px;
    width: 100px;
    z-index: -1;
}
.form-group label {
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    padding: 12px 15px;
    transition: var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 97, 90, 0.2);
    outline: none;
}
.form-group textarea {
    height: 150px;
    resize: vertical;
}
.submit-btn {
    background-color: var(--primary-color);
    font-size: 1rem;
    overflow: hidden;
    padding: 14px 30px;
    position: relative;
    text-align: center;
    z-index: 1;
}
.submit-btn:before {
    background-color: var(--primary-dark);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width 0.3s ease;
    width: 0;
    z-index: -1;
}
.submit-btn:hover {
    box-shadow: 0 5px 15px rgba(180, 61, 55, 0.3);
}
.submit-btn:hover:before {
    width: 100%;
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.product-card.animate-on-scroll {
    transition-delay: calc(var(--delay, 0) * 0.1s);
}
.product-card:first-child {
    --delay: 1;
}
.product-card:nth-child(2) {
    --delay: 2;
}
.product-card:nth-child(3) {
    --delay: 3;
}
.shipping-item:first-child {
    --delay: 1;
}
.shipping-item:nth-child(2) {
    --delay: 2;
}
.shipping-item:nth-child(3) {
    --delay: 3;
}
.testimonial-item {
    transition: all 0.4s ease;
    transition-delay: calc(var(--delay, 0) * 0.1s);
}
.testimonial-item:first-child {
    --delay: 1;
}
.testimonial-item:nth-child(2) {
    --delay: 2;
}
.testimonial-item:nth-child(3) {
    --delay: 3;
}
.award-item-animate {
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.about-story:hover {
    box-shadow: 0 15px 40px rgba(180, 61, 55, 0.15);
    transform: translateY(-5px);
    transition: var(--transition);
}
.faq-section {
    background: linear-gradient(135deg, var(--white) 0, hsla(0, 0%, 96%, 0.8) 50%, var(--light-gray) 100%);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}
.faq-section:before {
    animation: float 15s ease-in-out infinite;
    height: 250px;
    right: -80px;
    top: -80px;
    width: 250px;
}
.faq-section:after,
.faq-section:before {
    background-color: rgba(231, 97, 90, 0.05);
    border-radius: 50%;
    content: "";
    position: absolute;
    z-index: 0;
}
.faq-section:after {
    animation: float 20s ease-in-out infinite reverse;
    bottom: -100px;
    height: 300px;
    left: -100px;
    width: 300px;
}
.faq-header {
    animation: fadeInDown 1s ease;
    margin-bottom: 60px;
    text-align: center;
}
.faq-header h2 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}
.faq-header h2:after {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    bottom: -12px;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    width: 100px;
}
.faq-header h2:hover:after {
    width: 120px;
}
.faq-header p {
    color: rgba(51, 51, 51, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}
.faq-container {
    margin: 0 auto;
    max-width: 900px;
}
.faq-item {
    background-color: var(--white);
    border-left: 4px solid transparent;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(180, 61, 55, 0.15);
    transform: translateY(-5px);
}
.faq-question {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    position: relative;
    transition: var(--transition);
}
.faq-question h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    padding-right: 40px;
    transition: var(--transition);
}
.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}
.faq-item.active .faq-question {
    background-color: rgba(231, 97, 90, 0.05);
}
.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}
.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}
.contact-section {
    background: linear-gradient(135deg, var(--light-gray) 0, hsla(0, 0%, 100%, 0.9) 50%, var(--light-gray) 100%);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}
.contact-section:before {
    animation: float 15s ease-in-out infinite;
    background-color: rgba(231, 97, 90, 0.05);
    border-radius: 50%;
    content: "";
    height: 200px;
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    z-index: 0;
}
.contact-header {
    animation: fadeInDown 1s ease;
    margin-bottom: 60px;
    text-align: center;
}
.contact-header h2 {
    color: var(--primary-dark);
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}
.contact-header h2:after {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    bottom: -12px;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    width: 100px;
}
.contact-header h2:hover:after {
    width: 120px;
}
.contact-header p {
    color: rgba(51, 51, 51, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}
.contact-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
}
.contact-form {
    animation: fadeInLeft 1s ease;
    background-color: var(--white);
    border-radius: 16px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: var(--transition);
}
.contact-form:hover {
    box-shadow: 0 20px 50px rgba(180, 61, 55, 0.15);
    transform: translateY(-10px);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    color: var(--primary-dark);
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    padding: 15px;
    transition: var(--transition);
    width: 100%;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 97, 90, 0.2);
    outline: none;
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.submit-btn {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(180, 61, 55, 0.2);
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 30px;
    transition: var(--transition);
}
.submit-btn:hover {
    box-shadow: 0 8px 25px rgba(180, 61, 55, 0.3);
    transform: translateY(-3px);
}
.contact-info {
    animation: fadeInRight 1s ease;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}
.info-item {
    background-color: var(--white);
    border-bottom: 3px solid transparent;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}
.info-item:hover {
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(180, 61, 55, 0.15);
    transform: translateY(-10px);
}
.info-icon {
    align-items: center;
    background-color: rgba(231, 97, 90, 0.1);
    border-radius: 50%;
    display: flex;
    height: 70px;
    justify-content: center;
    margin: 0 auto 20px;
    width: 70px;
}
.info-icon,
.info-icon i {
    transition: var(--transition);
}
.info-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
}
.info-item:hover .info-icon {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
}
.info-item:hover .info-icon i {
    color: var(--white);
    transform: rotateY(180deg);
}
.info-item h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.info-item a,
.info-item p {
    color: var(--dark-gray);
    transition: var(--transition);
}
.info-item a:hover {
    color: var(--primary-color);
}
.map-container {
    border: 5px solid var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    grid-column: span 2;
    height: 400px;
    overflow: hidden;
    transition: var(--transition);
}
.map-container:hover {
    box-shadow: 0 20px 50px rgba(180, 61, 55, 0.15);
    transform: translateY(-10px);
}
.map-container iframe {
    border: none;
    height: 100%;
    width: 100%;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    .contact-method {
        display: none;
    }
    .social-contact {
        display: block;
    }
}
[lang="fr"] .fr-content {
    display: block;
}
[lang="fr"] .en-content,
[lang="fr"] .nl-content {
    display: none;
}
[lang="nl"] .nl-content {
    display: block;
}
[lang="nl"] .en-content,
[lang="nl"] .fr-content {
    display: none;
}
[lang="en"] .en-content {
    display: block;
}
[lang="en"] .fr-content,
[lang="en"] .nl-content {
    display: none;
}
