* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0a1a3a;
    --secondary-blue: #1a3a5a;
    --accent-blue: #2d5a8a;
    --light-blue: #4a7ba8;
    --bright-blue: #6ba3d4;
    --dark-blue: #051020;
    --text-light: #e8f0f8;
    --text-gray: #b8c8d8;
    --gradient-start: #0a1a3a;
    --gradient-end: #1a3a5a;
    --shadow-blue: rgba(13, 26, 58, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--secondary-blue) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(107, 163, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 123, 168, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.header {
    position: relative;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    box-shadow: 0 4px 20px var(--shadow-blue);
    z-index: 100;
}

.header-top {
    position: relative;
    height: 8px;
    overflow: hidden;
}

.header-decoration-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, var(--bright-blue) 0%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0.3;
}

.header-decoration-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(-90deg, var(--bright-blue) 0%, transparent 100%);
    transform: skewX(20deg);
    opacity: 0.3;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.logo-underline {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--bright-blue) 50%, transparent 100%);
    margin-top: 5px;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.menu-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 163, 212, 0.3), transparent);
    transition: left 0.5s ease;
}

.menu-link:hover::before {
    left: 100%;
}

.menu-link:hover {
    background: rgba(107, 163, 212, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 163, 212, 0.3);
}

.menu-link.active {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    box-shadow: 0 4px 15px rgba(107, 163, 212, 0.4);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--bright-blue);
    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(8px, -8px);
}

.header-bottom {
    position: relative;
    height: 15px;
    overflow: hidden;
}

.header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-blue) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    margin-bottom: 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.3) 0%, rgba(26, 58, 90, 0.5) 100%);
    pointer-events: none;
}

.interactive-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.4) 0%, rgba(26, 58, 90, 0.3) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.interactive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(107, 163, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--bright-blue);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.zodiac-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.zodiac-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 163, 212, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zodiac-card:hover::before {
    opacity: 1;
}

.zodiac-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--bright-blue);
    box-shadow: 0 15px 40px rgba(107, 163, 212, 0.4);
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.8) 0%, rgba(26, 58, 90, 0.7) 100%);
}

.zodiac-card.active {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--bright-blue);
    box-shadow: 0 15px 40px rgba(107, 163, 212, 0.5);
    background: linear-gradient(135deg, rgba(45, 90, 138, 0.8) 0%, rgba(74, 123, 168, 0.7) 100%);
}

.zodiac-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    display: block;
}

.zodiac-card:hover .zodiac-icon,
.zodiac-card.active .zodiac-icon {
    transform: rotate(360deg) scale(1.2);
}

.zodiac-name {
    font-size: 1.5rem;
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.zodiac-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.zodiac-card.active .zodiac-info {
    max-height: 300px;
    opacity: 1;
}

.zodiac-dates {
    color: var(--light-blue);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.zodiac-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.5) 0%, rgba(26, 58, 90, 0.4) 100%);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(107, 163, 212, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--bright-blue);
    box-shadow: 0 20px 50px rgba(107, 163, 212, 0.3);
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-content {
    padding: 35px;
}

.feature-title {
    font-size: 1.8rem;
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.horoscope-intro {
    margin-bottom: 80px;
    position: relative;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    order: 2;
}

.intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.2) 0%, rgba(26, 58, 90, 0.4) 100%);
    pointer-events: none;
}

.intro-text {
    order: 1;
}

.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
    padding: 15px;
    background: rgba(107, 163, 212, 0.1);
    border-left: 3px solid var(--bright-blue);
    border-radius: 5px;
    line-height: 1.6;
}

.year-overview {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.4) 0%, rgba(26, 58, 90, 0.3) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.year-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(107, 163, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.overview-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: var(--bright-blue);
    box-shadow: 0 20px 50px rgba(107, 163, 212, 0.3);
}

.overview-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.overview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-card:hover .overview-image {
    transform: scale(1.1);
}

.overview-content {
    padding: 30px;
}

.overview-title {
    font-size: 1.6rem;
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.overview-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.signs-preview {
    margin-bottom: 60px;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sign-preview-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.5) 0%, rgba(26, 58, 90, 0.4) 100%);
    border: 2px solid rgba(107, 163, 212, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.sign-preview-card:hover {
    transform: translateY(-6px);
    border-color: var(--bright-blue);
    box-shadow: 0 15px 40px rgba(107, 163, 212, 0.3);
}

.sign-preview-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sign-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sign-preview-card:hover .sign-image {
    transform: scale(1.15);
}

.sign-preview-content {
    padding: 25px;
}

.sign-preview-title {
    font-size: 1.5rem;
    color: var(--bright-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.sign-preview-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.chinese-intro {
    margin-bottom: 80px;
    position: relative;
}

.chinese-intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.chinese-intro-text {
    order: 1;
}

.chinese-intro-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    order: 2;
}

.chinese-intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.chinese-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.2) 0%, rgba(26, 58, 90, 0.4) 100%);
    pointer-events: none;
}

.animals-cycle {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.4) 0%, rgba(26, 58, 90, 0.3) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.animals-cycle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(107, 163, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.animal-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.animal-card:hover {
    transform: translateY(-8px);
    border-color: var(--bright-blue);
    box-shadow: 0 15px 40px rgba(107, 163, 212, 0.4);
}

.animal-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.animal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.animal-card:hover .animal-image {
    transform: scale(1.15);
}

.animal-content {
    padding: 25px;
}

.animal-name {
    font-size: 1.6rem;
    color: var(--bright-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.animal-years {
    color: var(--light-blue);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.animal-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.chinese-elements {
    margin-bottom: 60px;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.element-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.5) 0%, rgba(26, 58, 90, 0.4) 100%);
    border: 2px solid rgba(107, 163, 212, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.element-card:hover {
    transform: translateY(-6px);
    border-color: var(--bright-blue);
    box-shadow: 0 15px 40px rgba(107, 163, 212, 0.3);
}

.element-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.element-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.element-card:hover .element-image {
    transform: scale(1.1);
}

.element-content {
    padding: 30px;
}

.element-title {
    font-size: 1.7rem;
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.element-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.lunar-intro {
    margin-bottom: 80px;
    position: relative;
}

.lunar-intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.lunar-intro-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    order: 1;
}

.lunar-intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.lunar-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.2) 0%, rgba(26, 58, 90, 0.4) 100%);
    pointer-events: none;
}

.lunar-intro-text {
    order: 2;
}

.lunar-phases-interactive {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.4) 0%, rgba(26, 58, 90, 0.3) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.lunar-phases-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(107, 163, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.phase-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 163, 212, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.phase-card:hover::before {
    opacity: 1;
}

.phase-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--bright-blue);
    box-shadow: 0 15px 40px rgba(107, 163, 212, 0.4);
}

.phase-card.active {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--bright-blue);
    box-shadow: 0 15px 40px rgba(107, 163, 212, 0.5);
    background: linear-gradient(135deg, rgba(45, 90, 138, 0.8) 0%, rgba(74, 123, 168, 0.7) 100%);
}

.phase-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.phase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.phase-card:hover .phase-image,
.phase-card.active .phase-image {
    transform: scale(1.15);
}

.phase-content {
    padding: 25px;
}

.phase-name {
    font-size: 1.6rem;
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.phase-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.phase-card.active .phase-info {
    max-height: 200px;
    opacity: 1;
}

.phase-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.lunar-influence {
    margin-bottom: 60px;
}

.influence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.influence-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.5) 0%, rgba(26, 58, 90, 0.4) 100%);
    border: 2px solid rgba(107, 163, 212, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.influence-card:hover {
    transform: translateY(-8px);
    border-color: var(--bright-blue);
    box-shadow: 0 20px 50px rgba(107, 163, 212, 0.3);
}

.influence-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.influence-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.influence-card:hover .influence-image {
    transform: scale(1.1);
}

.influence-content {
    padding: 30px;
}

.influence-title {
    font-size: 1.6rem;
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.influence-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.personal-form-section {
    margin-bottom: 80px;
    padding: 60px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.quiz-form {
    width: 100%;
}

.quiz-title {
    font-size: 2.2rem;
    color: var(--bright-blue);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 26, 58, 0.7);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236ba3d4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 50px;
}

.form-group select:hover,
.form-group input:hover {
    border-color: var(--bright-blue);
    background-color: rgba(10, 26, 58, 0.9);
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(107, 163, 212, 0.2);
    background-color: rgba(10, 26, 58, 0.9);
}

.form-group select option {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 10px;
}

.quiz-button {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--text-light);
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 163, 212, 0.4);
    font-family: inherit;
}

.quiz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 163, 212, 0.6);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bright-blue) 100%);
}

.quiz-button:active {
    transform: translateY(0);
}

.contact-form-section {
    margin-bottom: 80px;
    padding: 60px 0;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-title {
    font-size: 2.5rem;
    color: var(--bright-blue);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-subtitle {
    color: var(--text-gray);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    width: 100%;
}

.form-alerts {
    margin-bottom: 25px;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: center;
}

.alert-success {
    background: rgba(74, 168, 123, 0.2);
    border: 2px solid rgba(74, 168, 123, 0.5);
    color: #4aa87b;
}

.alert-error {
    background: rgba(168, 74, 74, 0.2);
    border: 2px solid rgba(168, 74, 74, 0.5);
    color: #a84a4a;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 26, 58, 0.7);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.contact-form .form-control:hover {
    border-color: var(--bright-blue);
    background-color: rgba(10, 26, 58, 0.9);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(107, 163, 212, 0.2);
    background-color: rgba(10, 26, 58, 0.9);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form input[type="date"].form-control {
    color-scheme: dark;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 22px;
    height: 22px;
    margin: 0;
    z-index: 2;
    left: 0;
    top: 2px;
}

.checkbox-label span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    position: relative;
    padding-left: 25px;
    min-height: 22px;
}

.checkbox-label > span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(107, 163, 212, 0.5);
    border-radius: 4px;
    background: rgba(10, 26, 58, 0.7);
    transition: all 0.3s ease;
    z-index: 0;
}

.checkbox-label:hover > span::before {
    border-color: var(--bright-blue);
    background: rgba(10, 26, 58, 0.9);
    box-shadow: 0 0 0 3px rgba(107, 163, 212, 0.2);
}

.checkbox-label input[type="checkbox"]:checked + span::before {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(107, 163, 212, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + span::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 4px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    width: 22px;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.checkbox-hint {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.checkbox-label a {
    color: var(--bright-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--light-blue);
}

.form-submit {
    text-align: center;
    margin: 35px 0 25px;
}

.submit-button {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--text-light);
    border: none;
    padding: 18px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 163, 212, 0.4);
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 163, 212, 0.6);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bright-blue) 100%);
}

.submit-button:active {
    transform: translateY(0);
}

.form-footer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 20px;
}

.thanks-section {
    margin-bottom: 80px;
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 25px;
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--text-light);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(107, 163, 212, 0.4);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-title {
    font-size: 2.5rem;
    color: var(--bright-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-subtext {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-button {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 163, 212, 0.4);
    display: inline-block;
}

.thanks-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 163, 212, 0.6);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--bright-blue) 100%);
}

.thanks-button-secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--bright-blue);
    box-shadow: none;
}

.thanks-button-secondary:hover {
    background: rgba(107, 163, 212, 0.1);
    border-color: var(--bright-blue);
    color: var(--bright-blue);
}

.policy-section {
    margin-bottom: 80px;
    padding: 60px 0;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.6) 0%, rgba(26, 58, 90, 0.5) 100%);
    border: 2px solid rgba(107, 163, 212, 0.3);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.policy-title {
    font-size: 2.5rem;
    color: var(--bright-blue);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.policy-content {
    color: var(--text-light);
    line-height: 1.8;
}

.policy-heading {
    font-size: 1.5rem;
    color: var(--bright-blue);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.contact-info {
    background: rgba(10, 26, 58, 0.4);
    border-left: 3px solid var(--bright-blue);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--bright-blue);
    font-weight: 600;
}

.policy-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(107, 163, 212, 0.1);
    border-radius: 8px;
    font-style: italic;
    text-align: center;
}

.footer {
    position: relative;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    margin-top: 60px;
    z-index: 100;
}

.footer-top {
    position: relative;
    height: 20px;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(107, 163, 212, 0.1) 10px,
        rgba(107, 163, 212, 0.1) 20px
    );
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    position: relative;
}

.footer-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-icon {
    width: 8px;
    height: 8px;
    background: var(--bright-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(107, 163, 212, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.footer-title {
    font-size: 1.3rem;
    color: var(--bright-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--bright-blue);
}

.footer-links a:hover {
    color: var(--bright-blue);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    margin-top: 30px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 50%, transparent 100%);
    margin-bottom: 20px;
}

.footer-copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: bottom 0.5s ease;
    padding: 0;
    overflow: hidden;
}

.cookie-popup.show {
    bottom: 30px;
}

.cookie-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-blue) 0%, var(--light-blue) 50%, var(--bright-blue) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.cookie-content {
    padding: 30px;
}

.cookie-header {
    margin-bottom: 15px;
}

.cookie-title {
    font-size: 1.4rem;
    color: var(--bright-blue);
    font-weight: 600;
    text-align: center;
}

.cookie-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(107, 163, 212, 0.4);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 163, 212, 0.6);
}

.cookie-decline {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--accent-blue);
}

.cookie-decline:hover {
    background: rgba(107, 163, 212, 0.1);
    color: var(--bright-blue);
    border-color: var(--bright-blue);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow-blue);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0 30px;
    }

    .menu-link {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }

    .burger-menu {
        display: flex;
    }

    .site-title {
        font-size: 2rem;
    }

    .header-container {
        padding: 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-popup {
        width: 95%;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        transform: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .zodiac-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image-wrapper {
        order: 1;
    }

    .intro-text {
        order: 2;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .signs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .chinese-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chinese-intro-image-wrapper {
        order: 1;
    }

    .chinese-intro-text {
        order: 2;
    }

    .animals-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .elements-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .thanks-wrapper {
        padding: 50px 35px;
    }

    .thanks-title {
        font-size: 2rem;
    }

    .thanks-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thanks-button {
        width: 100%;
        max-width: 300px;
    }

    .policy-wrapper {
        padding: 40px 30px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-heading {
        font-size: 1.3rem;
    }

    .lunar-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lunar-intro-image-wrapper {
        order: 1;
    }

    .lunar-intro-text {
        order: 2;
    }

    .phases-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .influence-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .quiz-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .header-container {
        padding: 12px 15px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .footer-container {
        padding: 40px 20px 20px;
    }

    .cookie-content {
        padding: 20px;
    }

    .cookie-title {
        font-size: 1.2rem;
    }

    .cookie-text {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        height: 350px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .zodiac-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zodiac-card {
        padding: 20px;
    }

    .zodiac-icon {
        font-size: 3rem;
    }

    .zodiac-name {
        font-size: 1.3rem;
    }

    .feature-image-wrapper {
        height: 250px;
    }

    .feature-content {
        padding: 25px;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .page-note {
        font-size: 0.9rem;
        padding: 12px;
    }

    .intro-image {
        height: 350px;
    }

    .overview-image-wrapper {
        height: 220px;
    }

    .overview-content {
        padding: 25px;
    }

    .overview-title {
        font-size: 1.4rem;
    }

    .overview-text {
        font-size: 0.95rem;
    }

    .signs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sign-preview-image {
        height: 180px;
    }

    .sign-preview-content {
        padding: 20px;
    }

    .sign-preview-title {
        font-size: 1.3rem;
    }

    .sign-preview-text {
        font-size: 0.95rem;
    }

    .chinese-intro-image {
        height: 350px;
    }

    .animals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .animal-image-wrapper {
        height: 200px;
    }

    .animal-content {
        padding: 20px;
    }

    .animal-name {
        font-size: 1.4rem;
    }

    .animal-description {
        font-size: 0.9rem;
    }

    .elements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .element-image-wrapper {
        height: 200px;
    }

    .element-content {
        padding: 25px;
    }

    .element-title {
        font-size: 1.5rem;
    }

    .element-text {
        font-size: 0.95rem;
    }

    .lunar-intro-image {
        height: 350px;
    }

    .phases-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .phase-image-wrapper {
        height: 220px;
    }

    .phase-content {
        padding: 20px;
    }

    .phase-name {
        font-size: 1.4rem;
    }

    .phase-description {
        font-size: 0.9rem;
    }

    .influence-image-wrapper {
        height: 220px;
    }

    .influence-content {
        padding: 25px;
    }

    .influence-title {
        font-size: 1.4rem;
    }

    .influence-text {
        font-size: 0.95rem;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .quiz-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group select,
    .form-group input {
        padding: 12px 45px 12px 15px;
        font-size: 0.95rem;
    }

    .quiz-button {
        padding: 15px 40px;
        font-size: 1rem;
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-form .form-group label {
        font-size: 1rem;
    }

    .contact-form .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .checkbox-label {
        font-size: 0.9rem;
    }

    .checkbox-hint {
        font-size: 0.8rem;
    }

    .submit-button {
        padding: 15px 40px;
        font-size: 1rem;
        width: 100%;
    }

    .thanks-wrapper {
        padding: 40px 25px;
    }

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .thanks-title {
        font-size: 1.8rem;
    }

    .thanks-text {
        font-size: 1.1rem;
    }

    .thanks-subtext {
        font-size: 0.95rem;
    }

    .policy-wrapper {
        padding: 30px 20px;
    }

    .policy-title {
        font-size: 1.8rem;
    }

    .policy-heading {
        font-size: 1.2rem;
    }

    .policy-content p {
        font-size: 0.95rem;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info p {
        font-size: 0.95rem;
    }
}
