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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    color: #26b9c9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d8f9a;
}

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

.btn-primary {
    background-color: #26b9c9;
    color: #ffffff !important;
}

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

.btn-secondary {
    background-color: #444444;
    color: #ffffff !important;
}

.btn-secondary:hover {
    background-color: #555555;
}

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

.btn-outline:hover {
    background-color: #26b9c9;
    color: #ffffff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #26b9c9;
}

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

.nav-links a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #26b9c9;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #26b9c9, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

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

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #26b9c9;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #222222;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.service-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(38, 185, 201, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1);
}

.service-card h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #26b9c9;
    margin-bottom: 1.5rem;
}

.about-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: invert(1);
}

/* Advantages */
.advantages {
    padding: 80px 0;
    background-color: #222222;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.advantage-item {
    text-align: center;
    padding: 1.5rem;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: invert(1);
}

.advantage-item h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.testimonial-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #26b9c9;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.testimonial-author strong {
    color: #26b9c9;
    display: block;
}

.testimonial-author span {
    color: #999999;
    font-size: 0.9rem;
}

/* Contact Preview */
.contact-preview {
    padding: 80px 0;
    background-color: #222222;
    text-align: center;
}

.contact-preview h2 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

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

.contact-item {
    background-color: #2a2a2a;
    padding: 1rem;
    border-radius: 5px;
}

/* Services Catalog */
.services-catalog {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.service-detail-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(38, 185, 201, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-large-icon {
    width: 80px;
    height: 80px;
    margin-right: 1.5rem;
    filter: invert(1);
}

.service-meta h3 {
    color: #26b9c9;
    margin-bottom: 0.5rem;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffd700;
}

.rating-text {
    color: #999999;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #cccccc;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #26b9c9;
    font-weight: bold;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #26b9c9;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background-color: #222222;
}

.service-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #26b9c9;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #26b9c9 0%, #1d8f9a 100%);
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Page Specific */
.company-story {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.story-content h2 {
    color: #26b9c9;
    margin-bottom: 2rem;
}

.story-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #26b9c9;
}

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

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #222222;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.team-member {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

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

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: invert(1);
}

.member-info h3 {
    color: #26b9c9;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #26b9c9;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-section h2,
.values-section h2 {
    color: #26b9c9;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-icon {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.value-item h3 {
    color: #26b9c9;
    margin-bottom: 0.5rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background-color: #222222;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.certification-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.cert-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1);
}

.certification-item h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    color: #26b9c9;
    margin-bottom: 2rem;
}

/* Form Styles */
.contact-form {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444444;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #26b9c9;
    box-shadow: 0 0 0 2px rgba(38, 185, 201, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Contact Details */
.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.contact-detail h3 {
    color: #26b9c9;
    margin-bottom: 0.5rem;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

.social-link {
    display: block;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.social-link:hover {
    color: #26b9c9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #222222;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.faq-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

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

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    filter: invert(1);
}

.thank-you-content h1 {
    color: #26b9c9;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.thank-you-details {
    margin-bottom: 3rem;
    color: #cccccc;
}

.thank-you-info {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thank-you-info h2 {
    color: #26b9c9;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    gap: 2rem;
}

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

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

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

.contact-reminder {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.contact-reminder h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

.phone-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #26b9c9;
    text-decoration: none;
    margin-top: 1rem;
}

.phone-link:hover {
    color: #1d8f9a;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Additional Resources */
.additional-resources {
    padding: 80px 0;
    background-color: #222222;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #26b9c9;
}

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

.resource-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.resource-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1);
}

.resource-card h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background-color: #1a1a1a;
}

.legal-page h1 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

.last-updated {
    color: #999999;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-content h2 {
    color: #26b9c9;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #26b9c9;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.legal-content strong {
    color: #ffffff;
}

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
}

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

.cookie-table th {
    background-color: #26b9c9;
    color: #ffffff;
    font-weight: bold;
}

.cookie-table td {
    color: #cccccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    border-top: 3px solid #26b9c9;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    color: #cccccc;
    margin: 0;
    flex: 1;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #26b9c9;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #26b9c9;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1rem;
    text-align: center;
    color: #999999;
}

/* Mobile Navigation Styles */
.nav-links.mobile-active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    gap: 1rem;
}

.nav-links.mobile-active a {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.nav-links.mobile-active a:last-child {
    border-bottom: none;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.cookie-settings-content {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 1;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-content h3 {
    color: #26b9c9;
    margin-bottom: 1rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 5px;
}

.cookie-category-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-category p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #26b9c9;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.cookie-notification.show {
    transform: translateX(0);
}

/* Form Error Styles */
.field-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* Fade-in Animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #26b9c9;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    .service-header {
        flex-direction: column;
    }
}

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

.service-card,
.advantage-item,
.testimonial-card,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #26b9c9;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .testimonial-card,
    .team-member {
        border: 2px solid #26b9c9;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
