:root {
    --primary-blue: #0D6E9A;
    --light-blue: #85C6E8;
    --sky-blue: #BDE5F2;
    --coral: #FF7F5C;
    --sunshine: #FFD966;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Always Hamburger */
header {
    background-color: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo a:hover h1 {
    color: #085a80;
}

/* Hamburger menu - always visible */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navigation - always dropdown style */
nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
    margin-top: 10px;
}

nav.active {
    display: block;
}

nav ul {
    list-style: none;
    padding: 15px 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: var(--sky-blue);
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background-color: var(--sky-blue);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.discover-button {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.discover-button:hover {
    background-color: #085a80;
}

.learn-button {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.learn-button:hover {
    background-color: #f0f0f0;
}

/* About Section */
.about {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-underline {
    width: 80px;
    height: 3px;
    background-color: var(--coral);
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
}

.about-image {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
}

.about-text h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background-color: var(--sky-blue);
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-blue);
    font-weight: bold;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-light);
}

/* Danoggin Section */
.danoggin {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
}

.danoggin-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.danoggin-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.danoggin-content p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
}

.features-list {
    width: 100%;
    margin-top: 30px;
}

/* Danoggin Page Specific Styles */
.danoggin-hero {
    background-color: var(--primary-blue);
}

.danoggin-hero h2, 
.danoggin-hero p {
    color: var(--white);
}

.danoggin-intro {
    padding: 80px 0;
}

.how-it-works {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.step {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: calc(50% - 15px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    background-color: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 20px;
}

.step p {
    color: var(--text-light);
    line-height: 1.5;
}

/* CTA Section */
.cta {
    background: var(--primary-blue);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.cta-button-light {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button-light:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer .copyright p {
    color: var(--coral);
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
}

.legal-section {
    padding: 20px 0;
    text-align: center;
}

.legal-links {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary-blue);
}

/* Content section padding */
.content-section {
    padding: 30px 0;
}

/* Responsive adjustments - minimal now */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-title h3 {
        font-size: 28px;
    }
    
    .about-text h4 {
        font-size: 20px;
    }
    
    .step {
        width: 100%;
    }
    
    .logo h1 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    nav {
        right: -10px;
        min-width: 180px;
    }
}