/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #1F2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #F97316;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #EA580C;
}

/* Buttons */
.btn-primary {
    background-color: #F97316;
    color: #FFFFFF;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #EA580C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background-color: #FFF7ED;
    color: #F97316;
    padding: 12px 24px;
    border: 2px solid #F97316;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #F97316;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background-color: #1F2937;
    color: #FFFFFF;
    padding: 20px;
    z-index: 10000;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: calc(100% - 40px);
}

.cookie-popup.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.cookie-content a {
    color: #F97316;
}

/* Header */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(31, 41, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo h1 {
    color: #F97316;
    font-size: 2rem;
    margin: 0;
}

.logo a {
    color: #F97316;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #EA580C;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: #1F2937;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #F97316;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #F97316;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1F2937;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-image {
    flex: 0 0 40%;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.feature-card h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: #6B7280;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: #FFF7ED;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #6B7280;
}

/* Contact Preview */
.contact-preview {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.contact-preview h2 {
    margin-bottom: 1rem;
}

.contact-preview p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6B7280;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.contact-preview .contact-item {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    padding: 2rem 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-preview .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.2);
}

.contact-preview .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #EA580C);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-preview .contact-item:hover::before {
    opacity: 1;
}

.contact-preview .contact-item strong {
    color: #F97316;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.contact-preview .contact-item {
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Guides Section */
.guides-section {
    padding: 60px 0;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #F97316;
}

.guide-content h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.guide-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.topic {
    background-color: #FFF7ED;
    color: #F97316;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Educational Resources */
.educational-resources {
    padding: 60px 0;
    background-color: #FFF7ED;
}

.educational-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.resource-item h4 {
    color: #F97316;
    margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: #1F2937;
    color: #FFFFFF;
    text-align: center;
}

.newsletter h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    color: #D1D5DB;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

/* Routes Section */
.route-categories {
    padding: 40px 0;
    background-color: #FFF7ED;
}

.route-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-card {
    background-color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover,
.category-card.active {
    background-color: #F97316;
    color: #FFFFFF;
    border-color: #F97316;
}

.routes-section {
    padding: 60px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.route-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #F97316;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.route-header h3 {
    color: #F97316;
    margin: 0;
    flex: 1;
}

.route-duration {
    background-color: #FFF7ED;
    color: #F97316;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.route-highlights {
    margin: 1.5rem 0;
}

.route-highlights h4 {
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.route-highlights ul {
    list-style: none;
    padding-left: 0;
}

.route-highlights li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.route-highlights li::before {
    content: '•';
    color: #F97316;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.route-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

/* Route Planning */
.route-planning {
    padding: 60px 0;
    background-color: #FFF7ED;
}

.route-planning h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.planning-info h3 {
    color: #F97316;
    margin-bottom: 1.5rem;
}

.planning-info ul {
    list-style: none;
    padding: 0;
}

.planning-info li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.planning-info li:last-child {
    border-bottom: none;
}

.planning-info strong {
    color: #F97316;
}

.planning-form {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.planning-form h3 {
    color: #F97316;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Tips Section */
.tips-categories {
    padding: 40px 0;
    background-color: #FFF7ED;
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-btn {
    background-color: #FFFFFF;
    color: #1F2937;
    padding: 12px 24px;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: #F97316;
    color: #FFFFFF;
    border-color: #F97316;
}

.tips-content {
    padding: 60px 0;
}

.tips-category {
    display: none;
}

.tips-category h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #F97316;
}

.tip-card h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tip-card li::before {
    content: '✓';
    color: #F97316;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tips-newsletter {
    padding: 60px 0;
    background-color: #1F2937;
    color: #FFFFFF;
    text-align: center;
}

.tips-newsletter h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.tips-newsletter p {
    margin-bottom: 2rem;
    color: #D1D5DB;
}

/* About Page Styles */
.mission-section {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-text h2 {
    color: #F97316;
    margin-bottom: 2rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #6B7280;
}

.mission-values {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 12px;
}

.mission-values h3 {
    color: #F97316;
    margin-bottom: 1.5rem;
}

.mission-values ul {
    list-style: none;
    padding: 0;
}

.mission-values li {
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.mission-values li:last-child {
    border-bottom: none;
}

.mission-values strong {
    color: #F97316;
}

.platform-section {
    padding: 80px 0;
    background-color: #FFF7ED;
}

.platform-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.platform-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.platform-item h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-info h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.methodology-section {
    padding: 80px 0;
    background-color: #FFF7ED;
}

.methodology-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.methodology-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
}

.methodology-item h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.methodology-item ul {
    list-style: none;
    padding: 0;
}

.methodology-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.methodology-item li::before {
    content: '•';
    color: #F97316;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.impact-section {
    padding: 80px 0;
}

.impact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
 
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-item h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-cta {
    padding: 80px 0;
    background-color: #FFF7ED;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 2rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    padding: 2rem 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    padding: 0.8rem;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: rgba(249, 115, 22, 0.15);
    transform: scale(1.05);
}

.contact-details h3 {
    color: #F97316;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-details p {
    margin: 0;
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details a {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-details a:hover {
    color: #EA580C;
    text-decoration: none;
}

.contact-form-section {
    padding: 60px 0;
    background-color: #FFF7ED;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.form-header p {
    color: #6B7280;
    font-size: 1.1rem;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1F2937;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F97316;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #F97316;
    border-color: #F97316;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    
}

.form-error {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-success {
    color: #059669;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.map-section {
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-info {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 12px;
}

.map-info h3 {
    color: #F97316;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.map-info h3:first-child {
    margin-top: 0;
}

.map-info p {
    margin-bottom: 0.5rem;
    color: #6B7280;
}

.faq-section {
    padding: 60px 0;
    background-color: #FFF7ED;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #F97316;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F97316;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #D1D5DB;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F97316;
}
@media (max-width: 850px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #E5E7EB;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        flex: none;
        max-width: 500px;
        width: 100%;
        order: 2;
        align-self: center;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        justify-content: flex-start;
    }

    .categories-nav {
        justify-content: flex-start;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .methodology-content {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .planning-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .route-header {
        flex-direction: column;
        gap: 1rem;
    }

    .route-duration {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .features,
    .guides-section,
    .routes-section,
    .tips-content,
    .mission-section,
    .platform-section,
    .team-section,
    .methodology-section,
    .impact-section,
    .contact-cta,
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .faq-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .feature-card,
    .guide-card,
    .route-card,
    .tip-card {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-popup,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .page-header,
    .hero {
        padding: 20px 0;
    }

    .btn-primary,
    .btn-secondary {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000000;
    }

    .btn-secondary {
        border: 2px solid #F97316;
    }

    .feature-card,
    .guide-card,
    .route-card,
    .tip-card {
        border: 2px solid #1F2937;
    }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #F97316;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
}

.skip-link:focus {
    top: 6px;
}

/* Service Pages Styles */
.privacy-content,
.terms-content,
.cookie-content-section {
    padding: 60px 0;
}

.policy-document,
.terms-document,
.cookie-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.policy-section,
.terms-section,
.cookie-section {
    margin-bottom: 3rem;
}

.policy-section:last-child,
.terms-section:last-child,
.cookie-section:last-child {
    margin-bottom: 0;
}

.policy-section h2,
.terms-section h2,
.cookie-section h2 {
    color: #F97316;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFF7ED;
}

.policy-section h3,
.terms-section h3,
.cookie-section h3 {
    color: #1F2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section ul,
.terms-section ul,
.cookie-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li,
.terms-section li,
.cookie-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.policy-footer,
.terms-footer,
.cookie-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #FFF7ED;
    text-align: center;
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 8px;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.cookie-table th {
    background-color: #F97316;
    color: #FFFFFF;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background-color: #FFF7ED;
}

.browser-instructions,
.mobile-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.browser-item,
.mobile-item {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 8px;
}

.browser-item h4,
.mobile-item h4 {
    color: #F97316;
    margin-bottom: 1rem;
}

.browser-item ol,
.mobile-item ol {
    padding-left: 1.5rem;
}

.browser-item li,
.mobile-item li {
    margin-bottom: 0.5rem;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.consequence-item {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 8px;
}

.consequence-item h4 {
    color: #F97316;
    margin-bottom: 1rem;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: #F97316;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background-color: #F97316;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #F97316;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.contact-info-box {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    text-align: left;
}

.contact-info-box h3 {
    color: #F97316;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-box p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #6B7280;
}

.urgent-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-method {
    background-color: #FFF7ED;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.contact-method strong {
    color: #F97316;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.recommended-content {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.recommended-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.recommended-content > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recommendation-card {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.recommendation-card h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.recommendation-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.newsletter-signup {
    padding: 60px 0;
    background-color: #FFF7ED;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #6B7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-note {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-top: 1rem;
    text-align: center;
}

.faq-preview {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-preview .faq-item {
    background-color: #FFF7ED;
    padding: 2rem;
    border-radius: 12px;
}

.faq-preview .faq-item h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-preview .faq-item p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.faq-link {
    text-align: center;
}

/* New Sections Styles */
.statistics-section {
    padding: 80px 0;
    background-color: #F97316;
    color: #FFFFFF;
    text-align: center;
}

.statistics-section h2 {
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color:  #888077;
    font-weight: 500;
}

.popular-destinations {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.popular-destinations h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.popular-destinations > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
}

.destination-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url('../images/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.destination-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destination-content h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.destination-content p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.educational-approach {
    padding: 80px 0;
    background-color: #FFF7ED;
}

.educational-approach h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text h3 {
    color: #F97316;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.approach-text p {
    color: #6B7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: #4B5563;
    line-height: 1.6;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 1.2rem;
}

.approach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.approach-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-center {
    background-color: #FFFFFF;
    color: #F97316;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.circle-item {
    position: absolute;
    background-color: #FFFFFF;
    color: #F97316;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.circle-item:nth-child(1) {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-item:nth-child(2) {
    top: 50px;
    right: 10px;
}

.circle-item:nth-child(3) {
    bottom: 50px;
    right: 10px;
}

.circle-item:nth-child(4) {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-icon-img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.check-icon {
    width: 80px;
    height: 80px;
}

/* About Page Improvements */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-icon {
    width: 48px;
    height: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item strong {
    color: #F97316;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.methodology-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.method-point {
    background-color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #F97316;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.method-point:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
}

.impact-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F97316;
    margin-bottom: 1rem;
    display: block;
}

/* Remove list styles globally */
ul, ol {
    list-style: none;
    padding-left: 0;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-center {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
    
    .circle-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    

    
    .cookie-popup {
        bottom: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Modal Styles */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #FFFFFF;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-50px) scale(0.9);
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 2px solid #FFF7ED;
}

.modal-header h2 {
    color: #F97316;
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #FFF7ED;
    color: #F97316;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modal-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.modal-text h3 {
    color: #F97316;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal-text h4 {
    color: #1F2937;
    margin: 2rem 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-text p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-text ul {
    margin-bottom: 2rem;
}

.modal-text li {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.modal-text li::before {
    content: '•';
    color: #F97316;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.modal-text strong {
    color: #F97316;
    font-weight: 600;
}

.route-duration-badge {
    display: inline-block;
    background-color: #F97316;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #F97316;
}



/* Mobile responsiveness for modals */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-img {
        height: 200px;
    }
    
    .modal-text h3 {
        font-size: 1.25rem;
    }
    
    .modal-text h4 {
         font-size: 1.1rem;
     }
 }

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
}

.gallery-section > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #FFFFFF;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #F97316;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background-color: #F97316;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Dots Indicators */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-dot:hover {
    border-color: #FFFFFF;
    transform: scale(1.2);
}

.gallery-dot.active {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    transform: scale(1.3);
}

/* Gallery animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-slide.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.gallery-slide.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* Mobile responsiveness for gallery */
@media (max-width: 768px) {
    .gallery-slides {
        height: 400px;
    }
    
    .slide-content {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-slides {
        height: 300px;
    }
    
    .slide-content h3 {
        font-size: 1.25rem;
    }
    
    .slide-content p {
         font-size: 0.9rem;
     }
 }

/* Study Preparation Styles */
.study-preparation {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.study-preparation h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
}

.study-preparation > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preparation-category {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preparation-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.preparation-category h3 {
    color: #F97316;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #FFF7ED;
    padding-bottom: 0.5rem;
}

.preparation-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preparation-item {
    border-left: 3px solid #F97316;
    padding-left: 1rem;
    transition: border-color 0.3s ease;
}

.preparation-item:hover {
    border-color: #EA580C;
}

.preparation-item h4 {
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.preparation-item p {
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

.preparation-tips {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.preparation-tips h3 {
    color: #F97316;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    background-color: #FFF7ED;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #F97316;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background-color: #FED7AA;
    transform: translateX(5px);
}

.tip-item strong {
    color: #F97316;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Mobile responsiveness for study preparation */
@media (max-width: 768px) {
    .study-preparation {
        padding: 60px 0;
    }
    
    .preparation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .preparation-category {
        padding: 1.5rem;
    }
    
    .preparation-category h3 {
        font-size: 1.25rem;
    }
    
    .preparation-item h4 {
        font-size: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-item {
         padding: 1rem;
     }
 }

/* Success Cases Styles */
.success-cases {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.success-cases h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
}

.success-cases > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-item {
    background-color: #F9FAFB;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.case-header {
    background-color: #F97316;
    color: #FFFFFF;
    padding: 1.5rem;
    text-align: center;
}

.case-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.case-type {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.case-content {
    padding: 2rem;
}

.case-details {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.case-details p {
    margin: 0.5rem 0;
    color: #4B5563;
}

.case-description {
    margin-bottom: 1.5rem;
}

.case-description p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-outcomes h4 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.case-outcomes ul {
    list-style: none;
    padding: 0;
}

.case-outcomes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4B5563;
}

.case-outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Beginner's Guide Styles */
.beginners-guide {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.beginners-guide h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
}

.beginners-guide > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.guide-steps {
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #F97316;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    color: #1F2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content > p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-tips h4 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-tips ul {
    list-style: none;
    padding: 0;
}

.step-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4B5563;
}

.step-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
}

.beginner-resources {
    margin-bottom: 3rem;
}

.beginner-resources h3 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
}

.resource-card h4 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.resource-card p {
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.common-mistakes h3 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mistakes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.mistake-item {
    background-color: #FEF2F2;
    border-left: 4px solid #EF4444;
    border-radius: 8px;
    padding: 1.5rem;
}

.mistake-item h4 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mistake-item p {
    color: #7F1D1D;
    line-height: 1.5;
    margin: 0;
}

/* Advanced Planning Styles */
.advanced-planning {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.advanced-planning h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
}

.advanced-planning > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.planning-methods {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.method-category {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 2rem;
}

.method-category h3 {
    color: #F97316;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #FFF7ED;
    padding-bottom: 1rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-3px);
}

.method-item h4 {
    color: #1F2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.method-item p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.method-tools {
    background-color: #FFF7ED;
    border-radius: 6px;
    padding: 1rem;
    border-left: 3px solid #F97316;
    font-size: 0.9rem;
    color: #92400E;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .success-cases,
    .beginners-guide,
    .advanced-planning {
        padding: 60px 0;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    .resources-grid,
    .mistakes-list,
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-category {
         padding: 1.5rem;
     }
 }

/* Our History Section Styles */
.our-history {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.our-history h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
}

.our-history > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Timeline Styles */
.history-timeline {
    position: relative;
    margin-bottom: 4rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #F97316;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #F97316;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid #FFFFFF;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-right: 10px solid #FFFFFF;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-content h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Expert Reviews Styles */
.expert-reviews {
    margin-bottom: 4rem;
}

.expert-reviews h3 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #F97316;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: #F97316;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    line-height: 1;
}

.review-author {
    border-top: 1px solid #E5E7EB;
    padding-top: 1.5rem;
}

.author-info h4 {
    color: #F97316;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #6B7280;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* Achievements Styles */
.achievements h3 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.achievement-item h4 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.achievement-item p {
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsiveness for Our History section */
@media (max-width: 768px) {
    .our-history {
        padding: 60px 0;
    }
    
    .history-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 2rem;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        margin: 0 1rem 0 0;
    }
    
    .timeline-content {
        max-width: none;
        flex: 1;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .review-content p::before {
         display: none;
     }
 }

/* Tips Category Labels */
.tip-category-label {
    display: inline-block;
    background-color: #F97316;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.all-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tips-overview {
    background-color: #FFF7ED;
    border-left: 4px solid #F97316;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.tips-overview p {
    margin: 0;
    color: #92400E;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Expert Opinions Styles */
.expert-opinions {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.expert-opinions h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
}

.expert-opinions > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.expert-opinion {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #F97316;
}

.expert-opinion:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.expert-quote {
    margin-bottom: 1.5rem;
}

.expert-quote p {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    position: relative;
    font-size: 1.1rem;
}

.expert-quote p::before {
    content: '"';
    font-size: 4rem;
    color: #F97316;
    position: absolute;
    left: -1.5rem;
    top: -1rem;
    line-height: 1;
    font-family: serif;
}

.expert-info {
    border-top: 1px solid #E5E7EB;
    padding-top: 1.5rem;
}

.expert-info h4 {
    color: #F97316;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.expert-info p {
    color: #6B7280;
    margin: 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile responsiveness for tips page */
@media (max-width: 768px) {
    .expert-opinions {
        padding: 60px 0;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-opinion {
        padding: 1.5rem;
    }
    
    .expert-quote p::before {
        font-size: 3rem;
        left: -1rem;
        top: -0.5rem;
    }
    
    .all-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .category-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}