:root {
    --primary-color: #0ed2f7;
    --secondary-color: #b2fefa;
    --dark-text: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(178, 254, 250, 0.85), rgba(14, 210, 247, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: var(--border-radius);
    color: var(--dark-text);
}

.table {
    background: var(--white);
}

.table thead th {
    border-bottom: 2px solid var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    color: var(--dark-text);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 210, 247, 0.3);
    color: var(--dark-text);
}

.card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.card-header {
    background: var(--light-bg);
    border: none;
}

.card-header button {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
}

.info-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.disclaimer-box {
    background: linear-gradient(135deg, rgba(178, 254, 250, 0.3), rgba(14, 210, 247, 0.3));
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.principle-box {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: border-left 0.3s ease;
}

.principle-box:hover {
    border-left: 4px solid var(--primary-color);
}

.routine-list {
    padding-left: 1.5rem;
}

.routine-list li {
    margin-bottom: 1rem;
}

.footer {
    margin-top: 5rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.thank-you-box {
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.check-icon {
    display: inline-block;
}

.contact-info .contact-item h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}
