/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
}

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

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

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

p {
    margin-bottom: 1rem;
}

a {
    color: #71f5f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5dd5d1;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    color: #0a0a0a;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5dd5d1, #4cc4c0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(113, 245, 240, 0.3);
    color: #0a0a0a;
}

.btn-secondary {
    background: transparent;
    color: #71f5f0;
    padding: 12px 24px;
    border: 2px solid #71f5f0;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #71f5f0;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #e0e0e0;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.cta-button {
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    color: #0a0a0a;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, #5dd5d1, #4cc4c0);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(113, 245, 240, 0.4);
    color: #0a0a0a;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

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

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #71f5f0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #71f5f0;
    background: rgba(113, 245, 240, 0.1);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #71f5f0;
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
}

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

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #111111;
}

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

.about-text h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #71f5f0;
    font-weight: bold;
}

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

/* Advantages Section */
.advantages-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.advantage-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 245, 240, 0.1);
    border-color: #71f5f0;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #111111;
}

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

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 245, 240, 0.1);
    border-color: #71f5f0;
}

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

.service-card h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #71f5f0;
    margin-top: 1rem;
}

.services-cta {
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.review-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(113, 245, 240, 0.1);
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2a;
}

.review-author strong {
    color: #71f5f0;
}

.review-author span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #111111;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #71f5f0;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #71f5f0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #b0b0b0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

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

.newsletter-text h2 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #71f5f0;
    box-shadow: 0 0 0 3px rgba(113, 245, 240, 0.1);
}

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

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #71f5f0;
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #71f5f0;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 3rem 0 1rem;
}

.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-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #71f5f0;
}

.footer-section h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: #71f5f0;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffffff, #71f5f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* Service Detail Pages */
.service-detail {
    padding: 6rem 0;
    background: #0a0a0a;
}

.service-detail.alt {
    background: #111111;
}

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

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #71f5f0;
    font-weight: bold;
}

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

.price-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.price-card.featured {
    border-color: #71f5f0;
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-3px);
    border-color: #71f5f0;
}

.price-card h4 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #71f5f0;
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #111111;
}

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

.team-member {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #71f5f0;
}

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-position {
    color: #71f5f0;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.team-specialties span {
    background: rgba(113, 245, 240, 0.1);
    color: #71f5f0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.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: 700;
    color: #71f5f0;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    color: #0a0a0a;
    text-align: center;
}

.cta-content h2 {
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #2a2a2a;
    margin-bottom: 2rem;
}

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

/* Service Packages */
.service-packages {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.package-card {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: #71f5f0;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #71f5f0;
}

.package-header {
    background: #2a2a2a;
    padding: 2rem;
    text-align: center;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    color: #0a0a0a;
}

.package-header h3 {
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #71f5f0;
}

.package-card.featured .package-price .price {
    color: #0a0a0a;
}

.package-price .period {
    color: #b0b0b0;
}

.package-features {
    padding: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.package-rating {
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    margin-right: 0.5rem;
}

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

.package-btn {
    display: block;
    width: 80%;
    margin: 0 auto 20px;
    padding: 12px;
    background: transparent;
    color: #71f5f0;
    border: 2px solid #71f5f0;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #71f5f0;
    color: #0a0a0a;
}

/* Contact Form Pages */
.contact-form-section {
    padding: 6rem 0;
    background: #111111;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-group {
    margin: 1rem 0;
}

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

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #2a2a2a;
    border-radius: 4px;
    background: #1a1a1a;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #71f5f0;
    border-color: #71f5f0;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-weight: bold;
    font-size: 14px;
}

/* Business Hours */
.business-hours {
    padding: 6rem 0;
    background: #0a0a0a;
}

.hours-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hours-grid {
    margin: 2rem 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #2a2a2a;
}

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

.day {
    font-weight: 600;
}

.time {
    color: #71f5f0;
}

.hours-note {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #71f5f0;
    margin-top: 2rem;
    text-align: left;
}

/* Legal Content */
.legal-content {
    padding: 8rem 0 4rem;
    background: #111111;
    margin-top: 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: #b0b0b0;
    font-style: italic;
}

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

.legal-text h2 {
    color: #71f5f0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-text h3 {
    color: #71f5f0;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-text ol,
.legal-text ul {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-box {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #71f5f0;
    margin: 2rem 0;
}

.contact-box h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

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

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background: #2a2a2a;
    color: #71f5f0;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    border-top: 1px solid #2a2a2a;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
    color: #71f5f0;
    margin: 0 0 0.5rem 0;
}

.cookie-content p {
    margin: 0;
    color: #b0b0b0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.cookie-modal-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #2a2a2a;
}

.cookie-modal-content h3 {
    color: #71f5f0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

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

.cookie-category input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #2a2a2a;
    border-radius: 4px;
    background: #0a0a0a;
    cursor: pointer;
    position: relative;
}

.cookie-category input[type="checkbox"]:checked {
    background: #71f5f0;
    border-color: #71f5f0;
}

.cookie-category input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-weight: bold;
    font-size: 14px;
}

.cookie-category input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

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

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 4rem;
    background: #111111;
    margin-top: 80px;
    text-align: center;
}

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

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

.thank-you-icon img {
    width: 80px;
    height: 80px;
}

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

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

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

.step-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #71f5f0;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.step-content h3 {
    color: #71f5f0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-box {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin: 3rem 0;
}

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

.urgent-contact .contact-item {
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 1rem;
    border: none;
}
.urgent-contact .contact-item img {
    width: 50px;
}

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

/* Additional Info sections */
.additional-info {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.info-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: #71f5f0;
}

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

.info-card h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
}

/* Newsletter Suggestion */
.newsletter-suggestion {
    padding: 6rem 0;
    background: #111111;
    text-align: center;
}

.newsletter-suggestion .newsletter-content {
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-suggestion .newsletter-form {
    margin-top: 2rem;
}

.newsletter-suggestion .form-group {
    display: flex;
    flex-direction: row;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-suggestion .form-group input {
    flex: 1;
    border-radius: 6px 0 0 6px;
}

.newsletter-suggestion .form-group button {
    border-radius: 0 6px 6px 0;
}

.newsletter-note {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 1rem;
}

/* Location and alternative contact sections */
.location-section,
.alt-contact,
.emergency-contact {
    padding: 6rem 0;
    background: #111111;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.transport-list {
    list-style: none;
    padding: 0;
}

.transport-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.transport-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #71f5f0;
    font-weight: bold;
}

.map-placeholder {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.map-link {
    display: inline-block;
    margin-top: 1rem;
    color: #71f5f0;
    text-decoration: underline;
}

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

.alt-contact-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.alt-contact-item:hover {
    transform: translateY(-3px);
    border-color: #71f5f0;
}

.alt-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.alt-link {
    display: inline-block;
    margin-top: 1rem;
    color: #71f5f0;
    text-decoration: underline;
}

.emergency-contact {
    background: #0a0a0a;
}

.emergency-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.emergency-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin: 2rem 0;
}

.emergency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
}

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

.emergency-item strong {
    color: #71f5f0;
}

.emergency-note {
    background: #2a1a1a;
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    color: #ffb3b3;
}

/* Service Contact */
.service-contact {
    padding: 6rem 0;
    background: #0a0a0a;
}

.service-contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-contact .contact-details {
    margin-top: 2rem;
}

.service-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: none;
    padding: 0;
    border: none;
}

.service-contact .contact-item img {
    width: 20px;
    height: 20px;
}

/* Company Story Section - O Firmie Page */
.company-story {
    padding: 6rem 0;
    background: #111111;
}

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

.story-text h2 {
    color: #71f5f0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.story-image {
    text-align: center;
}

.story-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(113, 245, 240, 0.2);
}

/* Company Values Section */
.company-values {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.value-item {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #71f5f0;
    box-shadow: 0 15px 40px rgba(113, 245, 240, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    font-weight: bold;
}

.value-item h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Contact Info Section - Kontakt Page */
.contact-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(113, 245, 240, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 213, 209, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(113, 245, 240, 0.15);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(113, 245, 240, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #71f5f0, #5dd5d1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(113, 245, 240, 0.3);
    box-shadow: 
        0 25px 50px rgba(113, 245, 240, 0.15),
        0 0 30px rgba(113, 245, 240, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(113, 245, 240, 0.3));
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(113, 245, 240, 0.5));
}

.contact-card h3 {
    color: #71f5f0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-card:hover h3 {
    text-shadow: 0 0 15px rgba(113, 245, 240, 0.5);
}

.contact-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.contact-card:hover p {
    color: #f0f0f0;
}

.contact-card a {
    color: #71f5f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-card a:hover {
    color: #5dd5d1;
    text-shadow: 0 0 8px rgba(113, 245, 240, 0.4);
}

.contact-note {
    color: #b0b0b0 !important;
    font-size: 0.95rem !important;
    margin-top: 1rem;
    font-style: italic;
}

/* Specific styling for each contact card */
.contact-card:nth-child(1) {
    border-color: rgba(113, 245, 240, 0.2);
}

.contact-card:nth-child(2) {
    border-color: rgba(93, 213, 209, 0.2);
}

.contact-card:nth-child(3) {
    border-color: rgba(113, 245, 240, 0.2);
}

/* Legacy contact-info styles for other pages */
.contact-info-container {
    position: relative;
    z-index: 1;
}

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

.contact-info-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(113, 245, 240, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(113, 245, 240, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(113, 245, 240, 0.3);
    box-shadow: 
        0 20px 40px rgba(113, 245, 240, 0.1),
        0 0 20px rgba(113, 245, 240, 0.05);
}

.contact-info-card .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-info-card .contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-card h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.contact-detail {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-detail strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-detail span,
.contact-detail a {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-detail a {
    color: #71f5f0;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #5dd5d1;
    text-decoration: underline;
}

.contact-hours {
    background: rgba(113, 245, 240, 0.05);
    border: 1px solid rgba(113, 245, 240, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-hours strong {
    color: #71f5f0;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-hours span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(113, 245, 240, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(93, 213, 209, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(113, 245, 240, 0.15);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(113, 245, 240, 0.1) 90deg,
        transparent 180deg,
        rgba(93, 213, 209, 0.1) 270deg,
        transparent 360deg
    );
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mv-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #1a1a1a;
    border-radius: 18px;
    z-index: -1;
}

.mv-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(113, 245, 240, 0.3);
    box-shadow: 
        0 25px 50px rgba(113, 245, 240, 0.15),
        0 0 30px rgba(113, 245, 240, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(113, 245, 240, 0.3));
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotateY(360deg);
    filter: drop-shadow(0 8px 16px rgba(113, 245, 240, 0.5));
}

.mv-card h3 {
    color: #71f5f0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #71f5f0, #5dd5d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.mv-card:hover h3 {
    text-shadow: 0 0 20px rgba(113, 245, 240, 0.5);
}

.mv-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.mv-card:hover p {
    color: #f0f0f0;
}

/* Mission Card specific styling */
.mv-card:first-child {
    background: linear-gradient(135deg, rgba(113, 245, 240, 0.05), rgba(26, 26, 26, 0.9));
}

.mv-card:first-child:hover {
    background: linear-gradient(135deg, rgba(113, 245, 240, 0.1), rgba(26, 26, 26, 0.9));
}

/* Vision Card specific styling */
.mv-card:last-child {
    background: linear-gradient(135deg, rgba(93, 213, 209, 0.05), rgba(26, 26, 26, 0.9));
}

.mv-card:last-child:hover {
    background: linear-gradient(135deg, rgba(93, 213, 209, 0.1), rgba(26, 26, 26, 0.9));
}

/* Decorative elements */
.mv-card:first-child::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(113, 245, 240, 0.2) 90deg,
        transparent 180deg
    );
}

.mv-card:last-child::before {
    background: conic-gradient(
        from 180deg,
        transparent 0deg,
        rgba(93, 213, 209, 0.2) 90deg,
        transparent 180deg
    );
}

/* Certifications Section */
.certifications-section {
    padding: 6rem 0;
    background: #111111;
    position: relative;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(113, 245, 240, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(93, 213, 209, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.cert-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(16, 16, 16, 0.95));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(113, 245, 240, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #71f5f0, #5dd5d1, #71f5f0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(113, 245, 240, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.cert-card:hover::after {
    width: 200%;
    height: 200%;
}

.cert-card:hover {
    transform: translateY(-8px);
    border-color: rgba(113, 245, 240, 0.4);
    box-shadow: 
        0 20px 40px rgba(113, 245, 240, 0.15),
        0 0 25px rgba(113, 245, 240, 0.1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(113, 245, 240, 0.2));
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(113, 245, 240, 0.4));
}

.cert-card h3 {
    color: #71f5f0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cert-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(113, 245, 240, 0.5);
}

.cert-card p {
    color: #b0b0b0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.cert-card:hover p {
    color: #e0e0e0;
}

/* Certification badges */
.cert-card:nth-child(1) {
    border-color: rgba(113, 245, 240, 0.25);
}

.cert-card:nth-child(2) {
    border-color: rgba(93, 213, 209, 0.25);
}

.cert-card:nth-child(3) {
    border-color: rgba(113, 245, 240, 0.25);
}

/* Company Mission Section */
.company-mission {
    padding: 6rem 0;
    background: #111111;
    text-align: center;
}

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

.mission-content h2 {
    color: #71f5f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.mission-highlight {
    background: linear-gradient(135deg, rgba(113, 245, 240, 0.1), rgba(93, 213, 209, 0.1));
    border: 1px solid rgba(113, 245, 240, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.mission-highlight h3 {
    color: #71f5f0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-highlight p {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .service-content,
    .newsletter-content,
    .location-content,
    .service-contact .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-suggestion .form-group {
        flex-direction: column;
    }
    
    .newsletter-suggestion .form-group input {
        border-radius: 6px;
        margin-bottom: 1rem;
    }
    
    .newsletter-suggestion .form-group button {
        border-radius: 6px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .action-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .urgent-contact {
        grid-template-columns: 1fr;
    }
    
    .emergency-item {
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
    }
    
    /* O Firmie and Contact Info Mobile Styles */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-item {
        padding: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-content p {
        font-size: 1.1rem;
    }
    
    .mission-highlight {
        padding: 1.5rem;
    }
    
    /* Mission-Vision Mobile Styles */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .mv-card {
        padding: 2.5rem;
    }
    
    .mv-card h3 {
        font-size: 1.5rem;
    }
    
    .mv-card p {
        font-size: 1rem;
    }
    
    .mv-icon {
        width: 70px;
        height: 70px;
    }
    
    /* Certifications Section Mobile Styles */
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cert-card {
        padding: 2rem;
    }
    
    .cert-card h3 {
        font-size: 1.2rem;
    }
    
    .cert-icon {
        width: 70px;
        height: 70px;
    }
    
    /* Contact Info Section Mobile Styles */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-card p {
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .packages-grid,
    .advantages-grid,
    .services-grid,
    .reviews-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle {
        display: none;
    }
    
    .page-header {
        margin-top: 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .legal-content {
        margin-top: 0;
        padding-top: 2rem;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    body {
        background: #000000;
        color: #ffffff;
    }
    
    .btn-primary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
    
    .btn-secondary {
        background: #000000;
        color: #ffffff;
        border: 2px solid #ffffff;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
