/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cfc270;
    --secondary-color: #d5d0bc;
    --accent-color: #f6f4eb;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --contrast-color: #8b7a3d;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--accent-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Navigation Styles */
.main-nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Banner - Original Centered Design with Interactive Hover Effects */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s ease;
}

.hero-banner:hover .banner-image img {
    filter: brightness(0.65) saturate(1.15);
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 194, 112, 0.8) 0%, rgba(213, 208, 188, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.6s ease;
}

.hero-banner:hover .banner-overlay {
    background: linear-gradient(135deg, rgba(207, 194, 112, 0.85) 0%, rgba(213, 208, 188, 0.85) 100%);
}

.banner-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-banner:hover .banner-content {
    transform: translateY(-10px);
}

.banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    transition: text-shadow 0.6s ease;
}

.hero-banner:hover .banner-title {
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.banner-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    font-style: italic;
}

.banner-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Page Banner - Asymmetrical with Interactive Effects */
.page-banner {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-bottom: 60px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    transition: clip-path 0.6s ease;
}

.page-banner:hover {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-banner .banner-image {
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-banner:hover .banner-image {
    transform: scale(1.02);
}

.page-banner .banner-overlay {
    clip-path: polygon(0 0, 60% 0, 70% 100%, 0 100%);
    padding-left: 10%;
    justify-content: flex-start;
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-banner:hover .banner-overlay {
    clip-path: polygon(0 0, 65% 0, 75% 100%, 0 100%);
}

.page-title {
    font-size: 48px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    text-align: left;
    transform: translateX(-30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-banner:hover .page-title {
    transform: translateX(0);
}

.page-subtitle {
    font-size: 24px;
    color: var(--white);
    font-style: italic;
    text-align: left;
    transform: translateX(-30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.page-banner:hover .page-subtitle {
    transform: translateX(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 16px;
}

.btn-primary {
    background: var(--contrast-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Section Styles - Asymmetrical */
.section-title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 50px;
    margin-left: 8%;
    color: var(--contrast-color);
    position: relative;
    padding-bottom: 15px;
    transform: rotate(-1deg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: rotate(2deg);
}

/* Intro Section - Asymmetrical Layout */
.intro-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 40px;
    padding: 0 5%;
}

.intro-card {
    background: var(--accent-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
}

.intro-card:nth-child(1) {
    transform: rotate(-1.5deg) translateY(30px);
}

.intro-card:nth-child(2) {
    transform: rotate(1deg) translateY(-20px);
    z-index: 2;
}

.intro-card:nth-child(3) {
    transform: rotate(-0.8deg) translateY(40px);
}

.intro-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.intro-card:hover {
    transform: translateY(-5px);
}

.intro-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #e0e0e0;
}

.intro-content {
    padding: 25px;
}

.intro-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.intro-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section - Asymmetrical Layout */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.services-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.9fr 1.1fr;
    gap: 35px;
    padding: 0 4%;
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:nth-child(1) {
    transform: rotate(-2deg) translateX(-15px);
    margin-top: 20px;
}

.service-card:nth-child(2) {
    transform: rotate(1.5deg) translateX(10px);
    margin-top: -15px;
}

.service-card:nth-child(3) {
    transform: rotate(-1deg) translateX(-10px);
    margin-top: 25px;
}

.service-card:nth-child(4) {
    transform: rotate(2deg) translateX(15px);
    margin-top: -10px;
}

.service-card:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05) translateX(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--contrast-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* Remnants Section - Asymmetrical */
.remnants-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.remnants-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 0 5%;
}

.remnants-content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    background: #e0e0e0;
    transform: rotate(-3deg) translateX(-20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.remnants-section:hover .remnants-content img {
    transform: rotate(0deg) translateX(0);
}

.remnants-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.remnants-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Testimonial Section - Asymmetrical */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    position: relative;
    clip-path: polygon(0 0, 100% 4%, 100% 96%, 0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 0.85fr;
    gap: 40px;
    padding: 0 5%;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:nth-child(1) {
    transform: rotate(-1.5deg) translateY(25px);
}

.testimonial-card:nth-child(2) {
    transform: rotate(1.2deg) translateY(-15px);
    z-index: 2;
}

.testimonial-card:nth-child(3) {
    transform: rotate(-1deg) translateY(30px);
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    background: #e0e0e0;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: bold;
    color: var(--contrast-color);
}

/* Content Section - Asymmetrical */
.content-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    padding: 0 5%;
}

.content-wrapper:nth-child(even) {
    grid-template-columns: 0.85fr 1.15fr;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.content-text h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--contrast-color);
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.feature-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.feature-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--contrast-color);
}

.feature-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--accent-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.category-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.category-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--contrast-color);
}

.category-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--contrast-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
}

.step-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.step-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--contrast-color);
}

.step-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.benefits-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
}

.benefits-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-list li svg {
    width: 24px;
    height: 24px;
    stroke: var(--contrast-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list li strong {
    color: var(--contrast-color);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Activities Section */
.activities-section {
    padding: 60px 0;
    background: var(--accent-color);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.activity-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.activity-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.activity-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.activity-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--contrast-color);
}

.activity-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Remnants Program Section */
.remnants-program-section {
    padding: 60px 0;
    background: var(--white);
}

.remnants-program-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.remnants-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.remnants-text h4 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--contrast-color);
}

.remnants-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.remnants-list {
    list-style: none;
    margin: 20px 0;
}

.remnants-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.remnants-list li svg {
    width: 24px;
    height: 24px;
    stroke: var(--contrast-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.remnants-list li strong {
    color: var(--contrast-color);
}

.remnants-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.remnants-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #e0e0e0;
}

/* Schedule Section */
.schedule-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.schedule-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
}

.schedule-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.schedule-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.schedule-text strong {
    color: var(--contrast-color);
}

/* Club Benefits */
.club-benefits {
    padding: 60px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
}

.benefit-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: #e0e0e0;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--contrast-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Library Features */
.library-features {
    padding: 60px 0;
    background: var(--accent-color);
}

.feature-box {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.feature-box h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--contrast-color);
}

.feature-box p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Access Section */
.access-section {
    padding: 60px 0;
    background: var(--white);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.access-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
}

.access-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.access-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--contrast-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--contrast-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.consultation-box {
    background: var(--accent-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.consultation-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.consultation-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.consultation-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.consultation-box li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.contact-map h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

/* Visit Section */
.visit-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.visit-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.visit-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--contrast-color);
}

.visit-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Featured Products Section - Asymmetrical */
.featured-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    position: relative;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.1fr;
    gap: 40px;
    padding: 0 5%;
}

.featured-item {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.featured-item:nth-child(1) {
    transform: rotate(-1.5deg) translateY(20px);
}

.featured-item:nth-child(2) {
    transform: rotate(1.2deg) translateY(-15px);
    z-index: 2;
}

.featured-item:nth-child(3) {
    transform: rotate(-1deg) translateY(25px);
}

.featured-item:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e0e0e0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-item:hover .featured-image-wrapper img {
    transform: scale(1.15);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(207, 194, 112, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-item:hover .featured-overlay {
    opacity: 1;
}

.featured-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.5s ease;
}

.featured-item:hover .featured-icon {
    transform: scale(1);
}

.featured-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--contrast-color);
}

.featured-content {
    padding: 30px;
}

.featured-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.featured-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Why Choose Us Section - Asymmetrical */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
    padding: 0 5%;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
    transform: rotate(2deg) translateX(-15px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-section:hover .why-choose-image img {
    transform: rotate(0deg) translateX(0);
}

.why-choose-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--contrast-color);
    text-align: left;
    transform: rotate(-0.5deg);
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: var(--accent-color);
    border-radius: 15px;
    transition: all 0.4s ease;
    transform: translateX(-10px);
}

.why-item:nth-child(odd) {
    transform: translateX(10px);
}

.why-item:hover {
    transform: translateX(0);
    background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.why-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--contrast-color);
}

.why-text p {
    color: var(--text-light);
    line-height: 1.7;
}

/* News & Events Section - Asymmetrical */
.news-events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    position: relative;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.news-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.9fr;
    gap: 35px;
    padding: 0 5%;
}

.news-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-card:nth-child(1) {
    transform: rotate(-1.8deg) translateY(30px);
}

.news-card:nth-child(2) {
    transform: rotate(1.5deg) translateY(-20px);
    z-index: 2;
}

.news-card:nth-child(3) {
    transform: rotate(-1.2deg) translateY(35px);
}

.news-card:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--contrast-color);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.news-day {
    display: block;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.news-month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 4px;
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e0e0e0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--contrast-color);
}

.news-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

.news-link {
    color: var(--contrast-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--primary-color);
    gap: 10px;
}

/* Success Page Styles */
.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.success-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.8s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--white);
    stroke-width: 3;
}

.success-content h1 {
    font-size: 48px;
    color: var(--contrast-color);
    margin-bottom: 20px;
}

.success-message {
    font-size: 24px;
    color: var(--contrast-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.success-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.success-info {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--accent-color);
}

.success-info h3 {
    font-size: 28px;
    color: var(--contrast-color);
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-item {
    text-align: center;
    padding: 25px;
    background: var(--accent-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.info-item h4 {
    font-size: 20px;
    color: var(--contrast-color);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.success-cta {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--accent-color);
}

.success-cta h3 {
    font-size: 28px;
    color: var(--contrast-color);
    margin-bottom: 15px;
}

.success-cta > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--contrast-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-form {
    background: var(--accent-color);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--contrast-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(207, 194, 112, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    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='%238b7a3d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.6;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.form-actions .btn {
    min-width: 150px;
}

.form-actions button[type="reset"] {
    background: transparent;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.form-actions button[type="reset"]:hover {
    background: var(--contrast-color);
    color: var(--white);
}

/* Policy Pages Styles */
.policy-section {
    padding: 80px 0;
    background: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.policy-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    font-size: 14px;
}

.policy-body {
    line-height: 1.8;
}

.policy-body h2 {
    font-size: 32px;
    color: var(--contrast-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-body h3 {
    font-size: 24px;
    color: var(--contrast-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.policy-body ul,
.policy-body ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.policy-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-body a {
    color: var(--contrast-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-body a:hover {
    color: var(--primary-color);
}

.policy-body strong {
    color: var(--contrast-color);
    font-weight: 600;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--contrast-color) 0%, #6b5e2f 100%);
    color: var(--white);
    padding: 25px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--contrast-color);
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-btn-primary {
    background: var(--white);
    color: var(--contrast-color);
}

.cookie-btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn-secondary:hover {
    background: var(--white);
    color: var(--contrast-color);
}

.cookie-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--contrast-color) 0%, #6b5e2f 100%);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        padding: 20px;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 15px;
        border-radius: 5px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 20px;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-banner {
        height: 500px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
    
    .banner-overlay {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding-left: 5%;
        justify-content: flex-start;
    }
    
    .banner-content {
        max-width: 90%;
    }
    
    .section-title {
        text-align: left;
        margin-left: 5%;
        transform: rotate(0deg);
    }
    
    .section-title::after {
        transform: rotate(0deg);
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
    
    .intro-card {
        transform: rotate(0deg) translateY(0) !important;
    }
    
    .intro-card:hover {
        transform: translateY(-5px) scale(1.02) !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
    
    .service-card {
        transform: rotate(0deg) translateX(0) !important;
        margin-top: 0 !important;
    }
    
    .service-card:hover {
        transform: translateY(-8px) scale(1.03) !important;
    }
    
    .content-wrapper,
    .remnants-content,
    .benefits-content,
    .remnants-program-content,
    .schedule-content,
    .access-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
    
    .remnants-content img {
        transform: rotate(0deg) translateX(0);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
    
    .testimonial-card {
        transform: rotate(0deg) translateY(0) !important;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px) scale(1.02) !important;
    }
    
    .intro-section,
    .services-section,
    .remnants-section,
    .testimonial-section,
    .featured-section,
    .news-events-section {
        clip-path: none;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
    
    .featured-item {
        transform: rotate(0deg) translateY(0) !important;
    }
    
    .featured-item:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
    
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
    
    .why-choose-image img {
        transform: rotate(0deg) translateX(0);
    }
    
    .why-choose-content h2 {
        transform: rotate(0deg);
        text-align: center;
    }
    
    .why-item {
        transform: translateX(0) !important;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }
    
    .news-card {
        transform: rotate(0deg) translateY(0) !important;
    }
    
    .news-card:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
    
    .page-banner {
        height: 300px;
    }
    
    .features-grid,
    .categories-grid,
    .steps-grid,
    .activities-grid,
    .visit-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .success-content {
        padding: 40px 20px;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
    }
    
    .success-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .success-content h1 {
        font-size: 36px;
    }
    
    .success-message {
        font-size: 20px;
    }
    
    .success-description {
        font-size: 16px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .success-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-links {
        flex-direction: column;
    }
    
    .cta-link {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-link {
        display: block;
        margin-top: 10px;
    }
    
    .policy-content {
        padding: 0 3%;
    }
    
    .policy-body h2 {
        font-size: 26px;
    }
    
    .policy-body h3 {
        font-size: 20px;
    }
    
    .policy-body p {
        text-align: left;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .banner-description {
        font-size: 14px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-banner {
        height: 300px;
    }
    
    .page-banner {
        height: 250px;
    }
    
    .intro-content h3,
    .service-card h3,
    .feature-card h3,
    .category-card h3,
    .activity-card h3 {
        font-size: 18px;
    }
    
    .content-text h2,
    .remnants-text h2,
    .benefits-text h2,
    .access-text h2,
    .contact-info h2 {
        font-size: 24px;
    }
    
    .content-text h3,
    .remnants-text h3,
    .schedule-text h3 {
        font-size: 20px;
    }
    
    .nav-menu {
        max-width: 100%;
        left: 0;
    }
}
