

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #F7F3E9 0%, #EDE6D3 100%);
    min-height: 100vh;
    color: #3A3A3A;
    line-height: 1.6;
    padding: 2rem 1rem;
}

/* Homepage specific styles */
body.homepage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(58, 58, 58, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid rgba(156, 120, 83, 0.2);
}

/* Homepage container styling */
.homepage .container {
    text-align: center;
}

.container:hover {
    transform: translateY(-5px);
}

/* Logo styles */
.logo {
    width: min(667px, 80vw);
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(58, 58, 58, 0.2));
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* Content page logo (smaller) */
.content-page .logo {
    width: min(445px, 80vw);
    margin-bottom: 1.5rem;
}

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

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3A3A3A 0%, #9C7853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content page h1 (smaller) */
.content-page h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #3A3A3A;
    border-bottom: 2px solid #9C7853;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    color: #3A3A3A;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3A3A3A;
}

.tagline {
    font-size: 1.3rem;
    color: #9C7853;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Content page tagline (smaller) */
.content-page .tagline {
    font-size: 1.2rem;
}

/* Navigation */
.navigation {
    text-align: center;
    margin-bottom: 2rem;
}

.nav-link {
    color: #9C7853;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3A3A3A;
}

/* Content styles */
.content {
    text-align: left;
}

.description {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Homepage description centers text */
.homepage .description {
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

p {
    font-size: 1rem;
    color: #4A4A4A;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Features grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.feature {
    background: rgba(247, 243, 233, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #9C7853;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 120, 83, 0.2);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 58, 58, 0.15);
    border-left-color: #3A3A3A;
}

.feature p {
    font-size: 0.95rem;
    color: #5A5A5A;
    line-height: 1.5;
}

/* Notice boxes */
.safety-notice {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border: 2px solid #FF6B35;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-weight: 500;
    color: #B8431F;
}

.safety-notice strong {
    color: #A03219;
}

.info-section {
    background: rgba(247, 243, 233, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #9C7853;
    margin: 1.5rem 0;
    border: 1px solid rgba(156, 120, 83, 0.2);
    position: relative;
    overflow: hidden; /* Ensures the background doesn't bleed outside the rounded corners */
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; /* Adjust this to control how much of the div the image covers */
    height: 100%;
    background-image: url("images/info-background-web.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.25; /* Adjust opacity to make it subtle */
    mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    z-index: 0;
}

.info-section > * {
    position: relative;
    z-index: 1; /* Ensures text stays above the background */
}

.warning-section {
    background: rgba(255, 248, 242, 0.9);
    border: 2px solid #FF8C42;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden; /* Ensures the background doesn't bleed outside the rounded corners */
}

.warning-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; /* Adjust this to control how much of the div the image covers */
    height: 100%;
    background-image: url("images/warning-background-web.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.25; /* Adjust opacity to make it subtle */
    mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    z-index: 0;
}

.warning-section > * {
    position: relative;
    z-index: 1; /* Ensures text stays above the background */
}

.warning-section h3 {
    color: #B8431F;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.emergency-section {
    background: rgba(255, 242, 242, 0.9);
    border: 2px solid #E74C3C;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden; /* Ensures the background doesn't bleed outside the rounded corners */
}

.emergency-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; /* Adjust this to control how much of the div the image covers */
    height: 100%;
    background-image: url("images/emergency-background-web.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.45; /* Adjust opacity to make it subtle */
    mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    z-index: 0;
}

.emergency-section > * {
    position: relative;
    z-index: 1; /* Ensures text stays above the background */
}

.emergency-section h3 {
    color: #C0392B;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.key-points {
    background: rgba(156, 120, 83, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(156, 120, 83, 0.3);
    position: relative;
    overflow: hidden; /* Ensures the background doesn't bleed outside the rounded corners */
}

.key-points::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; /* Adjust this to control how much of the div the image covers */
    height: 100%;
    background-image: url("images/key-points-background-web.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.45; /* Adjust opacity to make it subtle */
    mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,1) 100%);
    z-index: 0;
}

.key-points > * {
    position: relative;
    z-index: 1; /* Ensures text stays above the background */
}

/* Launch info */
.launch-info {
    background: rgba(156, 120, 83, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(156, 120, 83, 0.3);
}

.launch-text {
    font-size: 1rem;
    color: #9C7853;
    margin-bottom: 0.5rem;
}

.launch-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3A3A3A;
}

/* Lists */
ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

li {
    margin: 0.5rem 0;
    color: #4A4A4A;
}

/* Responsive design */
@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .content-page h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.homepage .container {
    animation: float 8s ease-in-out infinite;
}