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

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

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

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

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2563eb;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1f2937;
    border-radius: 40px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.phone-screen {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    color: #1a202c;
}

.app-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2rem;
}

.app-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2rem;
}

.stat-text {
    font-weight: 600;
    color: #4b5563;
    flex: 1;
}

.stat-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    color: #4b5563;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    min-height: 300px;
}

.health-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.health-icon {
    font-size: 4rem;
}

.health-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="3" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

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

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

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

.footer-section h3 {
    color: #06b6d4;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-icon {
    font-size: 1rem;
}

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

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

.footer-links a:hover {
    color: #06b6d4;
}

.footer-disclaimer {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23header-pattern)"/></svg>');
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

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

.contact-form-container {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.form-header p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    display: none;
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-link {
    color: #2563eb;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
}

.contact-address {
    color: #4b5563;
    line-height: 1.5;
}

.support-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

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

.hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.hour-item span:first-child {
    font-weight: 600;
    color: #374151;
}

.hour-item span:last-child {
    color: #6b7280;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.faq-question h3 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #6b7280;
    transition: all 0.3s ease;
}

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

.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 2rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

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

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

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-content {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.sidebar-content h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.content-nav a {
    color: #6b7280;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.content-nav a:hover,
.content-nav a.active {
    background: #2563eb;
    color: white;
}

.legal-main {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-section h4 {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* Highlight Boxes */
.privacy-highlight,
.terms-highlight,
.medical-alert {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    border: 2px solid #f59e0b;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.medical-alert {
    background: linear-gradient(135deg, #fee2e2, #fca5a5);
    border-color: #ef4444;
}

.highlight-icon,
.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h3,
.alert-content h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.medical-alert .alert-content h3 {
    color: #dc2626;
}

.highlight-content p,
.alert-content p {
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

.medical-alert .alert-content p {
    color: #dc2626;
}

/* Info Types Grid */
.info-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.info-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.info-type h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-type ul {
    margin: 0;
    padding-left: 1rem;
}

.info-type li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

/* Usage Items */
.usage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.usage-icon {
    font-size: 2rem;
    color: #2563eb;
    flex-shrink: 0;
}

.usage-text h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.usage-text p {
    color: #4b5563;
    margin: 0;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #0ea5e9;
    text-align: center;
}

.security-icon {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
    display: block;
}

.security-item h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

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

.right-item {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #22c55e;
}

.right-item h4 {
    color: #15803d;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.right-item p {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Types */
.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

/* Contact Details in Legal Pages */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item strong {
    color: #1a202c;
    min-width: 80px;
}

/* Terms Specific Styles */
.important-note {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #1e40af;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
}

.feature-item h4 {
    color: #15803d;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #4b5563;
    margin: 0;
}

.usage-rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.rule-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.rule-category h4 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.allowed-list li {
    color: #059669;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

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

.forbidden-list li {
    color: #dc2626;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.forbidden-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.account-responsibilities {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.responsibility-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.resp-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.resp-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.resp-content p {
    color: #4b5563;
    margin: 0;
}

.ip-protection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.ip-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.liability-warning {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2rem;
    color: #ef4444;
    flex-shrink: 0;
}

.warning-text h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.warning-text p {
    color: #dc2626;
    margin: 0;
}

.termination-conditions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.termination-item {
    background: #fef9e7;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #f59e0b;
}

.termination-item h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.termination-item p {
    color: #92400e;
    margin: 0;
}

.legal-jurisdiction {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.jurisdiction-item {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.contact-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid #e5e7eb;
}

.contact-section h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #2563eb;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Disclaimer Specific Styles */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.warning-item {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #fecaca;
    text-align: center;
}

.warning-item .warning-icon {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 1rem;
    display: block;
}

.warning-item h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.warning-item p {
    color: #991b1b;
    font-size: 0.9rem;
    margin: 0;
}

.medical-advice-box {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.advice-icon {
    font-size: 2.5rem;
    color: #15803d;
    flex-shrink: 0;
}

.advice-content h3 {
    color: #15803d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.medical-list {
    margin: 0;
    padding-left: 1rem;
}

.medical-list li {
    color: #15803d;
    margin-bottom: 0.5rem;
    list-style: disc;
}

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

.resp-item {
    background: #fffbeb;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
}

.resp-item strong {
    color: #92400e;
    display: block;
    margin-bottom: 0.5rem;
}

.resp-item p {
    color: #92400e;
    margin: 0;
}

.emergency-alert {
    background: linear-gradient(135deg, #fee2e2, #fca5a5);
    border: 2px solid #ef4444;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.emergency-icon {
    font-size: 2.5rem;
    color: #dc2626;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.emergency-content h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.emergency-content p {
    color: #dc2626;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.emergency-numbers {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.emergency-number {
    background: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
}

.emergency-warning {
    color: #dc2626;
    font-weight: 600;
    margin-top: 1rem;
}

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

.limitation-point {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.limitation-point h4 {
    color: #374151;
    margin-bottom: 0.5rem;
}

.limitation-point p {
    color: #6b7280;
    margin: 0;
}

.summary-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.summary-icon {
    font-size: 2.5rem;
    color: #059669;
    flex-shrink: 0;
}

.summary-content h3 {
    color: #059669;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.summary-point span:last-child {
    color: #065f46;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

    .phone-mockup {
        width: 250px;
        height: 500px;
        transform: none;
    }

    /* Sections Mobile */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .container {
        padding: 0 1rem;
    }

    .features {
        padding: 60px 0;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    /* Legal Content Mobile */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .sidebar-content {
        background: #e5e7eb;
        padding: 1.5rem;
    }

    .content-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .content-nav a {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    /* Grid Adjustments Mobile */
    .info-types,
    .usage-rules {
        grid-template-columns: 1fr;
    }

    .security-measures,
    .rights-grid,
    .warning-grid,
    .responsibility-items,
    .limitation-points {
        grid-template-columns: 1fr;
    }

    .emergency-alert,
    .medical-advice-box,
    .summary-box {
        flex-direction: column;
        text-align: center;
    }

    .emergency-icon,
    .advice-icon,
    .summary-icon {
        margin-bottom: 1rem;
    }

    .emergency-numbers {
        justify-content: center;
    }

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

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form-container,
    .sidebar-content {
        padding: 1.5rem 1rem;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}