* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === Variables CSS === */
:root {
    --primary-dark: #1a0d2e;
    --primary-purple: #4a2c5a;
    --accent-gold: #d4af37;
    --accent-light-gold: #f4e4bc;
    --text-light: #f5f3f7;
    --text-gray: #c9c5d0;
    --bg-gradient-start: #2d1b3d;
    --bg-gradient-end: #1a0d2e;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.2);
}
/* === Fin Variables CSS === */

/* === Styles de base === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}
/* === Fin Styles de base === */

/* === Section Header === */
.main-header {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    box-shadow: 0 4px 20px var(--shadow-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-gold);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    padding: 15px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}
/* === Fin Section Header === */

/* === Section Main Content === */
.main-content {
    min-height: calc(100vh - 300px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
/* === Fin Section Main Content === */

/* === Section Hero Diagonal === */
.hero-section {
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-diagonal {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.3) 0%, rgba(26, 13, 46, 0.5) 100%);
    border-radius: 30px;
    padding: 0;
    transform: skewY(-1deg);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transform: skewY(1deg);
    min-height: 500px;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px 0 0 30px;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 13, 46, 0.4) 100%);
}

.hero-text-container {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    color: var(--primary-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-link {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow-gold);
}
/* === Fin Section Hero Diagonal === */

/* === Section Features Zigzag === */
.features-section {
    margin: 100px 0;
    position: relative;
}

.features-zigzag {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(74, 44, 90, 0.2) 0%, transparent 70%);
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.feature-item.feature-reverse {
    direction: rtl;
}

.feature-item.feature-reverse > * {
    direction: ltr;
}

.feature-image-wrapper {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
}

.feature-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    opacity: 0.2;
    z-index: 1;
    filter: blur(40px);
}

.feature-shape-left {
    top: -50px;
    left: -50px;
}

.feature-shape-right {
    bottom: -50px;
    right: -50px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-image {
    transform: scale(1.1);
}

.feature-content {
    padding: 40px;
    position: relative;
}

.feature-number {
    font-size: 120px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
    z-index: 0;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}
/* === Fin Section Features Zigzag === */

/* === Section Journey Circular === */
.journey-section {
    margin: 100px 0;
    position: relative;
    min-height: 600px;
}

.journey-circular {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.5) 0%, rgba(74, 44, 90, 0.3) 100%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.journey-circular::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0.1;
}

.journey-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.journey-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.journey-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    border: 4px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--shadow-gold), inset 0 0 40px rgba(212, 175, 55, 0.1);
    position: relative;
}

.journey-inner-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.journey-center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.journey-text-block {
    position: absolute;
    max-width: 400px;
    padding: 30px;
    background: rgba(26, 13, 46, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.journey-top {
    top: 10%;
    left: 10%;
}

.journey-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.journey-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.journey-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.journey-orb-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.journey-orb-2 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.journey-orb-3 {
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.2);
    }
}
/* === Fin Section Journey Circular === */

/* === Section Waves Overlay === */
.waves-section {
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.waves-overlay {
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.8) 0%, rgba(74, 44, 90, 0.6) 100%);
    border-radius: 40px;
    padding: 80px 0;
    position: relative;
}

.waves-background {
    display: none;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: waveMove 15s ease-in-out infinite;
}

.wave-1 {
    top: -50px;
    left: -50%;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.wave-2 {
    top: 150px;
    left: -30%;
    animation-delay: 3s;
    transform: rotate(3deg);
    height: 150px;
}

.wave-3 {
    bottom: 100px;
    left: -40%;
    animation-delay: 6s;
    transform: rotate(-2deg);
    height: 180px;
}

.waves-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.waves-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.waves-image-stack {
    position: relative;
    height: 500px;
}

.stack-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.5s ease, z-index 0.5s ease;
}

.stack-item-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-8deg);
}

.stack-item-2 {
    width: 300px;
    height: 380px;
    top: 50px;
    left: 120px;
    z-index: 2;
    transform: rotate(5deg);
}

.stack-item-3 {
    width: 270px;
    height: 340px;
    top: 100px;
    left: 250px;
    z-index: 3;
    transform: rotate(-3deg);
}

.stack-item:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.stack-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stack-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 13, 46, 0.4) 100%);
    transition: opacity 0.3s ease;
}

.stack-item:hover .stack-overlay {
    opacity: 0.3;
}

.waves-text-content {
    padding: 40px;
}

.waves-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.waves-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.waves-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.waves-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 100px;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) rotate(-5deg);
    }
    50% {
        transform: translateX(50px) rotate(-5deg);
    }
}
/* === Fin Section Waves Overlay === */

/* === Section Horoscope Intro Split === */
.horoscope-intro {
    margin: 60px 0;
    position: relative;
}

.horoscope-split {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.2) 0%, rgba(26, 13, 46, 0.4) 100%);
    border-radius: 30px;
    padding: 60px 0;
    overflow: hidden;
}

.horoscope-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text-side {
    position: relative;
    z-index: 2;
}

.intro-year-badge {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    color: var(--primary-dark);
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.intro-subtitle {
    font-size: 22px;
    color: var(--accent-light-gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.intro-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.intro-note {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: 10px;
    margin-top: 30px;
}

.note-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
}

.intro-image-side {
    position: relative;
    height: 500px;
}

.intro-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.intro-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(60px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.intro-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 13, 46, 0.5) 100%);
    z-index: 3;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}
/* === Fin Section Horoscope Intro Split === */

/* === Section Horoscope Signs Grid === */
.horoscope-signs {
    margin: 100px 0;
    position: relative;
}

.horoscope-grid {
    padding: 80px 0;
}

.horoscope-signs-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.signs-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signs-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.signs-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sign-card {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.3) 0%, rgba(26, 13, 46, 0.5) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.sign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.sign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-gold);
    border-color: var(--accent-gold);
}

.sign-card:hover::before {
    opacity: 1;
}

.sign-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sign-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sign-card:hover .sign-image {
    transform: scale(1.1);
}

.sign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 13, 46, 0.4) 100%);
    transition: opacity 0.3s ease;
}

.sign-card:hover .sign-overlay {
    opacity: 0.5;
}

.sign-card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.sign-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.sign-period {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.sign-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}
/* === Fin Section Horoscope Signs Grid === */

/* === Section Horoscope Themes Asymmetric === */
.horoscope-themes {
    margin: 100px 0;
    position: relative;
}

.horoscope-asymmetric {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.6) 0%, rgba(74, 44, 90, 0.4) 100%);
    border-radius: 40px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.themes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.themes-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.themes-text-section {
    position: relative;
    z-index: 2;
}

.themes-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.themes-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.themes-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.themes-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.theme-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.theme-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

.theme-icon {
    font-size: 36px;
    color: var(--accent-gold);
    line-height: 1;
    flex-shrink: 0;
}

.theme-text {
    flex: 1;
}

.theme-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-light-gold);
    margin-bottom: 8px;
}

.theme-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.themes-visual-section {
    position: relative;
    height: 500px;
}

.themes-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.themes-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    opacity: 0.3;
    filter: blur(40px);
    z-index: 1;
}

.themes-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: floatShape 8s ease-in-out infinite;
}

.themes-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation: floatShape 6s ease-in-out infinite;
    animation-delay: 2s;
}

.themes-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.themes-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 13, 46, 0.4) 100%);
    z-index: 3;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}
/* === Fin Section Horoscope Themes Asymmetric === */

/* === Section Chinese Intro Layered === */
.chinese-intro {
    margin: 60px 0;
    position: relative;
}

.chinese-layered {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.9) 0%, rgba(74, 44, 90, 0.7) 100%);
    border-radius: 30px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.chinese-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.chinese-intro-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 30px;
}

.chinese-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--accent-gold);
    opacity: 0.1;
    border-radius: 50%;
}

.chinese-pattern-1 {
    top: -100px;
    right: -100px;
    animation: patternRotate 20s linear infinite;
}

.chinese-pattern-2 {
    bottom: -100px;
    left: -100px;
    animation: patternRotate 25s linear infinite reverse;
}

.chinese-intro-content {
    position: relative;
    z-index: 2;
}

.chinese-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.chinese-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.chinese-subtitle {
    font-size: 24px;
    color: var(--accent-light-gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.chinese-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 800px;
}

.chinese-image-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-main {
    height: 400px;
}

.showcase-secondary {
    height: 400px;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 13, 46, 0.4) 100%);
    transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 0.5;
}

@keyframes patternRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* === Fin Section Chinese Intro Layered === */

/* === Section Chinese Animals Rotating === */
.chinese-animals {
    margin: 100px 0;
    position: relative;
}

.chinese-rotating {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(74, 44, 90, 0.3) 0%, rgba(26, 13, 46, 0.6) 100%);
    border-radius: 40px;
}

.chinese-animals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.animals-header {
    text-align: center;
    margin-bottom: 60px;
}

.animals-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animals-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.animals-wheel {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    border: 4px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--shadow-gold), inset 0 0 40px rgba(212, 175, 55, 0.1);
    z-index: 10;
}

.wheel-center-content {
    text-align: center;
}

.wheel-year {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.wheel-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.animal-card {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.4) 0%, rgba(26, 13, 46, 0.6) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.animal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.animal-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-gold);
    border-color: var(--accent-gold);
}

.animal-card:hover::before {
    opacity: 0.1;
}

.animal-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.animal-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.animal-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}
/* === Fin Section Chinese Animals Rotating === */

/* === Section Chinese Cycles Timeline === */
.chinese-cycles {
    margin: 100px 0;
    position: relative;
}

.chinese-timeline {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.8) 0%, rgba(74, 44, 90, 0.6) 100%);
    border-radius: 40px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.chinese-cycles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cycles-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cycles-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cycles-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.cycle-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cycle-ring-1 {
    width: 300px;
    height: 300px;
    animation: ringRotate 30s linear infinite;
}

.cycle-ring-2 {
    width: 350px;
    height: 350px;
    animation: ringRotate 40s linear infinite reverse;
}

.cycle-ring-3 {
    width: 400px;
    height: 400px;
    animation: ringRotate 50s linear infinite;
}

.cycles-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 30px var(--shadow-gold);
    z-index: 2;
}

.cycles-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cycles-orb {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(15px);
    animation: orbFloat 8s ease-in-out infinite;
}

.cycles-orb-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cycles-orb-2 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.cycles-orb-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

.cycles-text {
    position: relative;
    z-index: 2;
}

.cycles-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cycles-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cycles-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cycles-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cycle-feature {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cycle-feature:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.feature-info {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-light-gold);
    margin-bottom: 5px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.2);
    }
}
/* === Fin Section Chinese Cycles Timeline === */

/* === Section Lunar Intro Arc === */
.lunar-intro {
    margin: 60px 0;
    position: relative;
}

.lunar-arc {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.9) 0%, rgba(45, 27, 74, 0.8) 100%);
    border-radius: 40px;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.lunar-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lunar-arc-visual {
    position: relative;
    height: 400px;
}

.lunar-arc-bg {
    position: absolute;
    inset: 0;
    border-radius: 1000px 1000px 0 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
    opacity: 0.4;
}

.lunar-moon-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    transform: translateY(20px);
}

.lunar-moon-phase {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5f3f7 0%, #c9c5d0 60%, transparent 100%);
    box-shadow: 0 0 20px rgba(245, 243, 247, 0.6);
}

.lunar-phase-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.lunar-phase-2 {
    top: 40%;
    right: 5%;
}

.lunar-phase-3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.lunar-phase-4 {
    top: 40%;
    left: 5%;
}

.lunar-main-image {
    position: absolute;
    inset: 70px 80px 0 80px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.lunar-intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lunar-intro-text {
    position: relative;
    z-index: 2;
}

.lunar-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lunar-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lunar-subtitle {
    font-size: 20px;
    color: var(--accent-light-gold);
    margin-bottom: 20px;
}

.lunar-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
}
/* === Fin Section Lunar Intro Arc === */

/* === Section Lunar Phases Grid === */
.lunar-phases-grid {
    margin: 100px 0;
    position: relative;
}

.lunar-phases-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.phases-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phases-subtitle {
    font-size: 17px;
    color: var(--text-gray);
}

.phases-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.phase-card {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.3) 0%, rgba(26, 13, 46, 0.6) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px var(--shadow-gold);
    border-color: var(--accent-gold);
}

.phase-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.phase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.phase-card:hover .phase-image {
    transform: scale(1.08);
}

.phase-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 16px;
    background: rgba(26, 13, 46, 0.8);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-content {
    padding: 20px 22px 22px 22px;
}

.phase-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.phase-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
}
/* === Fin Section Lunar Phases Grid === */

/* === Section Lunar Calendar Steps === */
.lunar-calendar-steps {
    margin: 100px 0;
    position: relative;
}

.lunar-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.lunar-steps-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-subtitle {
    font-size: 17px;
    color: var(--text-gray);
}

.lunar-steps-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.lunar-steps-timeline {
    position: relative;
    padding-left: 30px;
}

.lunar-steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
    opacity: 0.6;
}

.lunar-step {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
}

.step-marker {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--shadow-gold);
}

.step-text {
    padding: 12px 16px;
    background: rgba(26, 13, 46, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.step-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--accent-light-gold);
    margin-bottom: 6px;
}

.step-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

.lunar-steps-visual {
    position: relative;
}

.lunar-steps-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.lunar-steps-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lunar-steps-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.8) 0%, rgba(74, 44, 90, 0.6) 100%);
}

.lunar-steps-note {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
}

.lunar-steps-note-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--accent-light-gold);
}
/* === Fin Section Lunar Calendar Steps === */

/* === Section Footer === */
.main-footer {
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    border-top: 2px solid var(--accent-gold);
    margin-top: 60px;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/footer-pattern.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-subtitle {
    font-size: 18px;
    color: var(--accent-light-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 15px;
    position: relative;
}

.footer-links a::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 14px;
}
/* === Fin Section Footer === */

/* === Section Cookie Popup === */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    border-top: 2px solid var(--accent-gold);
    padding: 25px;
    box-shadow: 0 -4px 20px var(--shadow-dark);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cookie-accept:hover {
    background: var(--accent-light-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.cookie-decline {
    background: transparent;
    color: var(--accent-gold);
}

.cookie-decline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}
/* === Fin Section Cookie Popup === */

/* === Section Personal Intro Hero === */
.personal-intro {
    margin: 60px 0;
    position: relative;
}

.personal-hero {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.3) 0%, rgba(26, 13, 46, 0.5) 100%);
    border-radius: 30px;
    padding: 80px 0;
    overflow: hidden;
}

.personal-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.personal-intro-content {
    position: relative;
    z-index: 2;
}

.personal-badge {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    color: var(--primary-dark);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.personal-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.personal-subtitle {
    font-size: 22px;
    color: var(--accent-light-gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.personal-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
}

.personal-intro-image {
    position: relative;
    height: 450px;
}

.personal-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.personal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.personal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 13, 46, 0.4) 100%);
}
/* === Fin Section Personal Intro Hero === */

/* === Section Personal Form === */
.personal-form-section {
    margin: 80px 0;
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.quiz-form {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.4) 0%, rgba(26, 13, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.quiz-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-light-gold);
    margin-bottom: 10px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(26, 13, 46, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    padding-right: 50px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px var(--shadow-gold);
    background-color: rgba(26, 13, 46, 0.8);
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 10px;
}

.quiz-button {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.quiz-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-gold);
    background: linear-gradient(135deg, var(--accent-light-gold) 0%, var(--accent-gold) 100%);
}

.quiz-button:active {
    transform: translateY(-1px);
}
/* === Fin Section Personal Form === */

/* === Section Contact Form === */
.contact-form-section {
    margin: 60px 0;
    position: relative;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

#customForm {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.4) 0%, rgba(26, 13, 46, 0.6) 100%);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.sublayer {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.boxarea {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

#customForm .form-group {
    margin-bottom: 25px;
}

#customForm .form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(26, 13, 46, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

#customForm .form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px var(--shadow-gold);
    background-color: rgba(26, 13, 46, 0.8);
}

#customForm .form-control::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

#customForm textarea.form-control {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.checkbox-group {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    padding: 15px;
    background: rgba(26, 13, 46, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(26, 13, 46, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    padding: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--accent-gold);
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    pointer-events: none;
}

.checkbox-main {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

.checkbox-hint {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.checkbox-hint a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-hint a:hover {
    color: var(--accent-light-gold);
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.btn-submit {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-gold);
    background: linear-gradient(135deg, var(--accent-light-gold) 0%, var(--accent-gold) 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.form-footer-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-top: 20px;
}
/* === Fin Section Contact Form === */

/* === Section Thanks === */
.thanks-section {
    margin: 80px 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: 0 0 40px var(--shadow-gold);
    animation: thanksPulse 2s ease-in-out infinite;
}

.thanks-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.thanks-submessage {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-actions {
    margin-top: 50px;
}

.thanks-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.thanks-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-gold);
    background: linear-gradient(135deg, var(--accent-light-gold) 0%, var(--accent-gold) 100%);
}

.thanks-button:active {
    transform: translateY(-1px);
}

@keyframes thanksPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px var(--shadow-gold);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px var(--shadow-gold);
    }
}
/* === Fin Section Thanks === */

/* === Section Policy === */
.policy-section {
    margin: 60px 0;
    position: relative;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.policy-content {
    background: linear-gradient(135deg, rgba(74, 44, 90, 0.3) 0%, rgba(26, 13, 46, 0.5) 100%);
    border-radius: 25px;
    padding: 60px 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.policy-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-text {
    color: var(--text-light);
    line-height: 1.9;
}

.policy-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.policy-contact {
    margin-top: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
}

.policy-contact p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.policy-contact strong {
    color: var(--accent-light-gold);
}

.policy-note {
    margin-top: 20px;
    font-style: italic;
    color: var(--accent-light-gold);
}
/* === Fin Section Policy === */

/* === Media Queries === */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
        border-top: 2px solid var(--accent-gold);
        box-shadow: 0 4px 20px var(--shadow-dark);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .site-title {
        font-size: 22px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image-container {
        border-radius: 30px 30px 0 0;
        height: 300px;
    }

    .hero-image-frame {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-text-container {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item.feature-reverse {
        direction: ltr;
    }

    .feature-image-wrapper {
        height: 300px;
    }

    .feature-number {
        font-size: 80px;
        top: -10px;
        left: -10px;
    }

    .feature-title {
        font-size: 26px;
    }

    .journey-circle {
        display: none;
    }

    .journey-inner-circle {
        width: 160px;
        height: 160px;
    }

    .journey-text-block {
        position: relative;
        max-width: 100%;
        top: auto;
        left: auto;
        margin: 20px;
    }

    .journey-orb {
        width: 50px;
        height: 50px;
    }

    .waves-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .waves-image-stack {
        height: 400px;
    }

    .stack-item-1 {
        width: 200px;
        height: 250px;
        left: 10px;
    }

    .stack-item-2 {
        width: 220px;
        height: 270px;
        left: 80px;
        top: 30px;
    }

    .stack-item-3 {
        width: 200px;
        height: 250px;
        left: 150px;
        top: 60px;
    }

    .waves-text-content {
        padding: 20px;
    }

    .waves-title {
        font-size: 30px;
    }

    .waves-stats {
        gap: 20px;
    }

    .stat-item {
        padding: 20px 25px;
        min-width: 80px;
    }

    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 760px) {
    .header-container {
        padding: 0 15px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .cookie-popup {
        padding: 20px 15px;
    }

    .cookie-text {
        font-size: 14px;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-diagonal {
        transform: none;
        border-radius: 20px;
    }

    .hero-content-wrapper {
        transform: none;
    }

    .hero-text-container {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .features-section {
        margin: 60px 0;
    }

    .features-container {
        gap: 50px;
    }

    .feature-content {
        padding: 20px;
    }

    .feature-number {
        font-size: 60px;
    }

    .journey-section {
        margin: 60px 0;
        min-height: 400px;
    }

    .journey-circle {
        width: 150px;
        height: 150px;
    }

    .journey-inner-circle {
        width: 120px;
        height: 120px;
    }

    .horoscope-intro-container {
        padding: 0 20px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-subtitle {
        font-size: 18px;
    }

    .intro-description {
        font-size: 16px;
    }

    .intro-image-side {
        height: 300px;
    }

    .horoscope-signs-header {
        padding: 0 15px;
    }

    .signs-title {
        font-size: 32px;
    }

    .signs-grid-container {
        padding: 0 15px;
    }

    .themes-container {
        padding: 0 20px;
    }

    .themes-title {
        font-size: 26px;
    }

    .themes-visual-section {
        height: 300px;
    }

    .theme-item {
        padding: 15px;
    }

    .theme-icon {
        font-size: 28px;
    }

    .chinese-title {
        font-size: 28px;
    }

    .chinese-subtitle {
        font-size: 18px;
    }

    .chinese-description {
        font-size: 16px;
    }

    .chinese-image-showcase {
        margin-top: 30px;
    }

    .showcase-main,
    .showcase-secondary {
        height: 250px;
    }

    .animals-title {
        font-size: 32px;
    }

    .animals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .animal-card {
        padding: 20px;
    }

    .wheel-center {
        width: 150px;
        height: 150px;
    }

    .wheel-year {
        font-size: 28px;
    }

    .cycles-visual {
        height: 300px;
    }

    .cycles-circle {
        width: 250px;
        height: 250px;
    }

    .cycles-center-image {
        width: 150px;
        height: 150px;
    }

    .cycles-title {
        font-size: 26px;
    }

    .feature-number {
        font-size: 36px;
        min-width: 60px;
    }

    .personal-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .personal-title {
        font-size: 36px;
    }

    .personal-intro-image {
        height: 350px;
    }

    .quiz-form {
        padding: 40px 30px;
    }

    .quiz-title {
        font-size: 28px;
    }

    .contact-form-container {
        padding: 0 20px;
    }

    .contact-title {
        font-size: 32px;
    }

    #customForm {
        padding: 40px 25px;
    }

    .checkbox-label {
        padding: 12px;
    }

    .btn-submit {
        padding: 15px 40px;
        font-size: 16px;
    }

    .thanks-title {
        font-size: 32px;
    }

    .thanks-message {
        font-size: 18px;
    }

    .thanks-circle {
        width: 120px;
        height: 120px;
    }

    .thanks-circle svg {
        width: 60px;
        height: 60px;
    }

    .thanks-button {
        padding: 15px 40px;
        font-size: 16px;
    }

    .waves-section {
        margin: 60px 0;
    }

    .waves-overlay {
        padding: 50px 0;
        border-radius: 25px;
    }

    .waves-container {
        padding: 0 20px;
    }

    .waves-image-stack {
        height: 300px;
    }

    .stack-item-1 {
        width: 150px;
        height: 190px;
        left: 5px;
    }

    .stack-item-2 {
        width: 170px;
        height: 210px;
        left: 60px;
        top: 20px;
    }

    .stack-item-3 {
        width: 150px;
        height: 190px;
        left: 110px;
        top: 40px;
    }

    .waves-title {
        font-size: 26px;
    }

    .waves-description {
        font-size: 15px;
    }

    .waves-stats {
        gap: 15px;
        justify-content: center;
    }

    .stat-item {
        padding: 15px 20px;
        min-width: 70px;
    }

    .stat-number {
        font-size: 28px;
    }

    .horoscope-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-title {
        font-size: 36px;
    }

    .intro-image-side {
        height: 400px;
    }

    .signs-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .themes-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .themes-visual-section {
        height: 400px;
    }

    .themes-title {
        font-size: 32px;
    }

    .chinese-intro-container {
        padding: 0 20px;
    }

    .chinese-title {
        font-size: 36px;
    }

    .chinese-image-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-main,
    .showcase-secondary {
        height: 300px;
    }

    .animals-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .cycles-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cycles-visual {
        height: 400px;
    }

    .cycles-circle {
        width: 300px;
        height: 300px;
    }

    .cycles-center-image {
        width: 180px;
        height: 180px;
    }

    .cycles-title {
        font-size: 32px;
    }
}
    .contact-form-container {
        padding: 0 15px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    #customForm {
        padding: 30px 20px;
    }

    .checkbox-main {
        font-size: 14px;
    }

    .checkbox-hint {
        font-size: 12px;
    }

    .form-footer-text {
        font-size: 12px;
    }

    .thanks-title {
        font-size: 28px;
    }

    .thanks-message {
        font-size: 16px;
    }

    .thanks-submessage {
        font-size: 14px;
    }

    .thanks-circle {
        width: 100px;
        height: 100px;
    }

    .thanks-circle svg {
        width: 50px;
        height: 50px;
    }

    .thanks-button {
        padding: 15px 35px;
        font-size: 14px;
    }

    .policy-container {
        padding: 0 15px;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-title {
        font-size: 28px;
    }

    .policy-heading {
        font-size: 18px;
    }

    .policy-text p {
        font-size: 15px;
        text-align: left;
    }

    .policy-contact {
        padding: 20px;
    }
/* === Fin Media Queries === */
