/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #20B2AA;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a8a83;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #20B2AA;
    color: white;
}

.btn-primary:hover {
    background-color: #1a8a83;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #333;
    border: 2px solid #20B2AA;
}

.btn-secondary:hover {
    background-color: #20B2AA;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}

.btn-outline:hover {
    background-color: #20B2AA;
    color: white;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.domain-text {
    font-size: 0.9rem;
    color: #20B2AA;
    font-weight: 500;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #20B2AA;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #20B2AA;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fffe 0%, #e6f9f7 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Company Section */
.company-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.company-text {
    flex: 1;
}

.company-image {
    flex: 1;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #20B2AA;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-img {
    width: 80px;
    height: 80px;
}

.service-title {
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    color: #20B2AA;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-img {
    width: 60px;
    height: 60px;
}

.advantage-title {
    color: #333;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #666;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Forms */
.subscription-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.subscription-text {
    flex: 1;
}

.subscription-form,
.contact-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20B2AA;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

input[type="checkbox"]:checked + .checkmark {
    background-color: #20B2AA;
    border-color: #20B2AA;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.link {
    color: #20B2AA;
    text-decoration: underline;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-category {
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    color: #20B2AA;
    font-weight: 500;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.blog-link {
    color: #20B2AA;
    font-weight: 500;
}

/* Contact Section */
.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-description {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #20B2AA;
    color: white;
}

.footer-title {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #20B2AA;
}

.newsletter-text {
    color: #ccc;
    margin-bottom: 1rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #333;
    color: white;
}

.newsletter-input input::placeholder {
    color: #888;
}

.newsletter-input input:focus {
    outline: none;
    border-color: #20B2AA;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.footer-bottom-content {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    padding-left: 15px;
    padding-right: 15px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.toggle-slider {
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

input[type="checkbox"]:checked + .toggle-slider {
    background-color: #20B2AA;
}

input[type="checkbox"]:checked + .toggle-slider::after {
    transform: translateX(26px);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Page Headers */
.page-header,
.legal-header {
    background: linear-gradient(135deg, #f8fffe 0%, #e6f9f7 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-introduction {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #20B2AA;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #333;
    border-bottom: 2px solid #20B2AA;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-link {
    color: #20B2AA;
    text-decoration: underline;
}

.legal-link:hover {
    color: #1a8a83;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background-color: #20B2AA;
    color: white;
    font-weight: 600;
}

.cookie-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-img {
    width: 80px;
    height: 80px;
    color: #20B2AA;
}

.thank-you-title {
    color: #333;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.steps-title {
    color: #333;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #20B2AA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.contact-info-box h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    color: #666;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.recommended-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.article-title {
    margin-bottom: 1rem;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.article-link {
    color: #20B2AA;
    font-weight: 500;
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detailed {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-detail-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.service-content {
    flex: 1;
}

.service-detail-title {
    color: #333;
    margin-bottom: 1rem;
}

.service-detail-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features-detailed {
    margin-bottom: 2rem;
}

.detailed-features {
    list-style: none;
    margin-top: 1rem;
}

.detailed-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.detailed-features li:last-child {
    border-bottom: none;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #20B2AA;
    font-family: 'Playfair Display', serif;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.additional-img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.additional-title {
    color: #333;
    margin-bottom: 1rem;
}

.additional-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.additional-features {
    list-style: none;
}

.additional-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.additional-features li:last-child {
    border-bottom: none;
}

.additional-features li:before {
    content: "•";
    color: #20B2AA;
    margin-right: 0.5rem;
}

/* Booking Information */
.booking-info {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booking-detail h3 {
    color: #333;
    margin-bottom: 1rem;
}

.booking-detail ul {
    list-style: none;
}

.booking-detail li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.booking-detail li:last-child {
    border-bottom: none;
}

/* CTA Sections */
.cta-content {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* About Page Specific */
.story-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-text {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.mission-icon {
    margin-bottom: 1.5rem;
}

.mission-img {
    width: 60px;
    height: 60px;
}

.mission-title {
    color: #333;
    margin-bottom: 1rem;
}

.mission-text {
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-img {
    width: 60px;
    height: 60px;
}

.value-title {
    color: #333;
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.member-name {
    color: #333;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #20B2AA;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    text-align: left;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #20B2AA;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 1rem;
}

.achievement-title {
    color: #333;
    margin-bottom: 1rem;
}

.achievement-description {
    color: #666;
}

/* Article Pages */
.article-header {
    background: linear-gradient(135deg, #f8fffe 0%, #e6f9f7 100%);
    padding: 120px 0 40px;
}

.article-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.article-date,
.article-category {
    font-size: 0.9rem;
    color: #666;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.article-category {
    background-color: #20B2AA;
    color: white;
}

.article-title {
    text-align: center;
    margin-bottom: 1rem;
}

.article-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.article-main-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
}

.article-content {
    padding: 80px 0;
}

.article-content .container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.article-body {
    flex: 2;
    max-width: none;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

.article-body h2 {
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #20B2AA;
    padding-bottom: 0.5rem;
}

.article-body h3 {
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body h4 {
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #555;
}

.article-cta {
    background: linear-gradient(135deg, #f8fffe 0%, #e6f9f7 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    color: #333;
    margin-bottom: 1rem;
}

.article-sidebar {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-2px);
}

.related-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.related-content p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

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

.tips-list li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li:before {
    content: "💡";
    margin-right: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Article Specific Elements */
.route-highlight {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #20B2AA;
    margin: 2rem 0;
}

.route-highlight h3 {
    color: #333;
    margin-bottom: 1rem;
}

.route-highlight ul {
    margin-left: 0;
    list-style: none;
}

.route-highlight li {
    padding: 0.5rem 0;
    color: #555;
}

.route-highlight li:before {
    content: "✓";
    color: #20B2AA;
    margin-right: 0.5rem;
    font-weight: bold;
}

.packing-section {
    margin: 2rem 0;
}

.packing-section h4 {
    color: #333;
    margin-bottom: 1rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.timeline-section {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background-color: #20B2AA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
}

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

.activity-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.activity-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.activity-item ul {
    margin-left: 0;
    list-style: none;
}

.activity-item li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

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

.activity-item li:before {
    content: "•";
    color: #20B2AA;
    margin-right: 0.5rem;
}

.weather-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.season-guide {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.season-guide h4 {
    color: #333;
    margin-bottom: 1rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
}

.season-guide ul {
    margin-left: 0;
    list-style: none;
}

.season-guide li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.season-guide li:last-child {
    border-bottom: none;
}

.comparison-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.comparison-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.comparison-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.comparison-details span {
    font-size: 0.8rem;
    color: #666;
}

.season-calendar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.season-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.season-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.season-item p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

.emergency-contact {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #ff6b6b;
}

.emergency-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.emergency-contact strong {
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .company-grid,
    .story-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .subscription-content,
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-detailed {
        flex-direction: column !important;
        gap: 2rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-content .container {
        flex-direction: column;
        gap: 2rem;
    }

    .article-sidebar {
        position: static;
        order: -1;
    }

    .hero-buttons,
    .cta-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .blog-grid,
    .mission-grid,
    .values-grid,
    .team-grid,
    .achievements-grid,
    .additional-services {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-input {
        flex-direction: column;
    }

    .page-title {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title,
    .page-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .navbar .container {
        padding: 0.75rem 15px;
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .domain-text {
        font-size: 0.8rem;
    }

    .service-card,
    .testimonial-card,
    .mission-card,
    .achievement-card,
    .additional-service,
    .booking-info,
    .cta-content {
        padding: 1.5rem;
    }

    .subscription-form,
    .contact-form {
        padding: 1.5rem;
    }

    .legal-introduction {
        padding: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .activity-grid,
    .weather-guide {
        grid-template-columns: 1fr;
    }

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

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Smooth Animations */
.service-card,
.testimonial-card,
.blog-card,
.article-card,
.advantage-card,
.value-card,
.mission-card,
.achievement-card,
.team-member,
.additional-service {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid #20B2AA;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .social-links {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        padding: 20px 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}
