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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #E5E5E5;
    background-color: #1A1A1A;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

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

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1em;
    color: #B0B0B0;
}

a {
    color: #00BCD4;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #4A148C;
    text-decoration: underline;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.logo {
    width: 100%;
    height: 100%;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4A148C, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #E5E5E5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00BCD4;
    background: rgba(0, 188, 212, 0.1);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(74, 20, 140, 0.1));
    position: relative;
    overflow: hidden;
    padding: 6rem 0 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #B0B0B0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Animations */
.pulse {
    animation: pulse 3s ease-in-out infinite;
}

.float {
    animation: float 6s ease-in-out infinite;
}

.float-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: -3s;
}

.twinkle {
    animation: twinkle 2s ease-in-out infinite;
}

.twinkle-delay {
    animation: twinkle 2s ease-in-out infinite;
    animation-delay: -1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

.btn-primary {
    background: linear-gradient(135deg, #4A148C, #00BCD4);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(74, 20, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 20, 140, 0.4);
    text-decoration: none;
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #00BCD4;
    border: 2px solid #00BCD4;
}

.btn-secondary:hover {
    background: #00BCD4;
    color: #1A1A1A;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1A1A1A, #2A2A2A);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 20px 40px rgba(74, 20, 140, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4A148C, #00BCD4);
    text-align: center;
}

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(74, 20, 140, 0.1));
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.25rem;
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-overview {
    padding: 6rem 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 15px 30px rgba(74, 20, 140, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    color: #B0B0B0;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #B0B0B0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.service-price {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #00BCD4;
    display: block;
}

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

/* Specializations */
.specializations {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.specializations h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.spec-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(0, 188, 212, 0.3);
    transform: translateY(-3px);
}

.spec-item h4 {
    color: #00BCD4;
    margin-bottom: 0.5rem;
}

.spec-item p {
    color: #B0B0B0;
    font-size: 0.95rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 15px 30px rgba(74, 20, 140, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.member-photo svg {
    width: 100%;
    height: 100%;
}

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

.member-title {
    color: #00BCD4;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.member-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.spec-tag {
    background: rgba(0, 188, 212, 0.2);
    color: #00BCD4;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
}

.member-credentials {
    font-size: 0.9rem;
}

.member-credentials p {
    margin-bottom: 0.5rem;
    color: #B0B0B0;
}

.member-credentials strong {
    color: #E5E5E5;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 15px 30px rgba(74, 20, 140, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 20px;
    height: 20px;
    color: #00BCD4;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #E5E5E5;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1), rgba(0, 188, 212, 0.1));
}

.stats h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00BCD4;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

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

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: #00BCD4;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #B0B0B0;
    margin-bottom: 0.25rem;
}

.contact-item small {
    color: #888;
    font-size: 0.85rem;
}

/* Forms */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 0.5rem;
    color: #E5E5E5;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BCD4;
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category {
    background: transparent;
    border: 2px solid rgba(0, 188, 212, 0.3);
    color: #00BCD4;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category.active,
.faq-category:hover {
    background: #00BCD4;
    color: #1A1A1A;
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question:hover {
    background: rgba(0, 188, 212, 0.05);
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: #00BCD4;
    font-weight: bold;
    transition: transform  0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

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

.contact-info .contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: block;
}

/* Privacy Page */
.privacy-content {
    padding: 6rem 0;
}

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

.privacy-intro {
    font-size: 1.2rem;
    color: #E5E5E5;
    background: rgba(0, 188, 212, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #00BCD4;
    margin-bottom: 3rem;
}

.privacy-text h2 {
    color: #00BCD4;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

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

.privacy-list li {
    padding: 0.75rem 0;
    color: #B0B0B0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.privacy-list li strong {
    color: #E5E5E5;
}

.info-box {
    background: rgba(74, 20, 140, 0.1);
    border: 1px solid rgba(74, 20, 140, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box p {
    margin-bottom: 0.5rem;
    color: #E5E5E5;
}

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

.purpose-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
}

.purpose-item h3 {
    color: #00BCD4;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.purpose-item p {
    margin-bottom: 1rem;
}

.purpose-item small {
    color: #888;
    font-style: italic;
}

.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    overflow: hidden;
}

.retention-table th,
.retention-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.retention-table th {
    background: rgba(0, 188, 212, 0.1);
    color: #00BCD4;
    font-weight: 600;
}

.retention-table td {
    color: #B0B0B0;
}

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

.right-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.right-item h3 {
    color: #00BCD4;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.right-item p {
    font-size: 0.95rem;
    margin: 0;
}

.document-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

/* Success Page */
.success-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #00BCD4;
}

.success-message {
    font-size: 1.25rem;
    color: #B0B0B0;
    line-height: 1.6;
}

.next-steps {
    padding: 4rem 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A148C, #00BCD4);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.step-item p {
    color: #B0B0B0;
}

.preparation {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.preparation h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.tip-item {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
}

.tip-icon {
    width: 50px;
    height: 50px;
    color: #00BCD4;
    flex-shrink: 0;
}

.tip-icon svg {
    width: 100%;
    height: 100%;
}

.tip-item h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-item p {
    color: #B0B0B0;
    font-size: 0.95rem;
    margin: 0;
}

.emergency-reminder,
.emergency-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.1), rgba(74, 20, 140, 0.1));
    text-align: center;
}

.emergency-content h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.emergency-content p {
    color: #B0B0B0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-numbers,
.emergency-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-number,
.emergency-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 127, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.emergency-number strong,
.emergency-item strong {
    display: block;
    font-size: 1.5rem;
    color: #DC267F;
    margin-bottom: 0.5rem;
}

.emergency-number span,
.emergency-item {
    color: #B0B0B0;
    font-size: 0.9rem;
}

.additional-resources {
    padding: 4rem 0;
}

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

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

.resource-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.resource-item h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.resource-item p {
    color: #B0B0B0;
    margin-bottom: 2rem;
}

.contact-reminder {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.contact-reminder h2 {
    margin-bottom: 1rem;
}

.contact-reminder p {
    color: #B0B0B0;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.contact-method svg {
    width: 30px;
    height: 30px;
    color: #00BCD4;
}

.contact-method strong {
    display: block;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.contact-method span {
    color: #B0B0B0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0F0F0F;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.footer-text h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-text p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #00BCD4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: #B0B0B0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00BCD4;
    text-decoration: none;
}

.footer-column p {
    color: #888;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-social h4 {
    color: #00BCD4;
    margin-bottom: 1rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #00BCD4;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 188, 212, 0.2);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-content a {
    color: #00BCD4;
}

.cookie-accept {
    background: linear-gradient(135deg, #4A148C, #00BCD4);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 20, 140, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .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(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .services-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-photo {
        align-self: center;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .team-member {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .retention-table {
        font-size: 0.85rem;
    }
    
    .retention-table th,
    .retention-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-consent,
    .footer,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
    
    p, li {
        color: black !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #FFFFFF;
        color: #000000;
        border: 2px solid #000000;
    }
    
    .btn-secondary {
        background: #000000;
        color: #FFFFFF;
        border: 2px solid #FFFFFF;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        border: 2px solid #FFFFFF;
    }
}

/* Focus Styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #00BCD4;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #00BCD4;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}