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

:root {
    --primary-color: #0A4D68;
    --accent-color: #05BFDB;
    --secondary-color: #00D9FF;
    --dark-bg: #1A1A2E;
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-weight: 400;
}

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

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(10, 77, 104, 0.05);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.header-ad-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(10, 77, 104, 0.15);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

.product-info {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 77, 104, 0.1);
    border: 1px solid var(--border-color);
}

.product-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid var(--warning-color);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.price-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #92400E;
}

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

.package-option {
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.package-option:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(5, 191, 219, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 191, 219, 0.15);
}

.package-option.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(5, 191, 219, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(5, 191, 219, 0.25);
    transform: translateY(-2px);
}

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

.package-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.package-price {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
}

.package-details {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stock-warning {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 2px solid var(--danger-color);
    color: #991B1B;
    padding: 18px;
    border-radius: 12px;
    margin: 25px 0;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 191, 219, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(5, 191, 219, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.section {
    padding: 80px 20px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.section-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.section-content {
    max-width: none;
    margin: 0;
}

.section-content p {
    margin-bottom: 20px;
}

.section-image {
    text-align: center;
    margin-bottom: 40px;
}

.section-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 77, 104, 0.15);
}

.section-video {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 77, 104, 0.15);
}

.section-video video {
    width: 100%;
    height: auto;
    display: block;
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.08);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 77, 104, 0.15);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.recommendations {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.recommendation-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.recommendation-item {
    background: var(--bg-white);
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(10, 77, 104, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(10, 77, 104, 0.15);
}

.recommendation-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(5, 191, 219, 0.3);
}

.recommendation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.recommendation-video {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 77, 104, 0.15);
}

.recommendation-video video {
    width: 100%;
    height: auto;
    display: block;
}

.recommendation-image {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 77, 104, 0.15);
}

.recommendation-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-specs {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.spec-item:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, rgba(5, 191, 219, 0.05) 0%, transparent 100%);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.instructions {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.instruction-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.instruction-step {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(10, 77, 104, 0.1);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.instruction-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 77, 104, 0.15);
}

.step-number {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(5, 191, 219, 0.3);
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.package-contents {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.contents-list {
    list-style: none;
}

.contents-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
}

.contents-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 24px;
}

.reviews-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.reviews-list {
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(10, 77, 104, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 77, 104, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-initials {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(5, 191, 219, 0.3);
}

.reviewer-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.review-rating {
    color: var(--warning-color);
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.verified-badge {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.limited-badge {
    background: linear-gradient(135deg, var(--danger-color) 0%, #DC2626 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ce-mark {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.german-flag {
    font-size: 20px;
    margin-right: 5px;
}

#stockStatus {
    color: var(--success-color);
    font-weight: 600;
    margin: 20px 0;
    font-size: 16px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--success-color);
}

footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    padding: 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-navigation {
    list-style: none;
}

.footer-navigation li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 20px 50px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.carousel-container {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 77, 104, 0.15);
    transition: transform 0.3s ease;
}

.carousel-container:hover {
    transform: scale(1.02);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    width: 500px;
    height: 500px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 20px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin-top: 20px;
    background: var(--bg-white);
    flex-wrap: wrap;
}

.carousel-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(5, 191, 219, 0.3);
}

.carousel-thumbnail.active {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(5, 191, 219, 0.4);
}

.carousel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .instruction-steps {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-video {
        max-width: 100%;
    }

    .carousel-container {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .carousel-slide {
        min-width: 100%;
        width: 100%;
        height: 100%;
    }

    .carousel-thumbnail {
        width: 60px;
        height: 60px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}

/* Back to home button */
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 191, 219, 0.3);
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 191, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* Legal pages styles */
.legal-page {
    padding: 60px 20px;
    background: var(--bg-light);
}

.legal-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.1);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .btn-back-home {
        padding: 10px 16px;
        font-size: 12px;
    }

    .legal-page h1 {
        font-size: 28px;
    }

    .legal-content {
        padding: 25px;
    }

    .legal-content h2 {
        font-size: 20px;
    }
}
