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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
background-color: #fff; /* Default background */
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section {
padding: 80px 0;
}

.section-light {
background-color: #f8f9fa;
}

.section-dark {
background-color: #2c3e50;
color: white;
}
.section-dark .section-title {
color: white;
}


.section-title {
font-size: 2.5rem;
font-weight: 700;
text-align: center;
margin-bottom: 3rem;
color: #2c3e50;
}

.btn {
display: inline-block;
padding: 12px 28px; /* Slightly larger padding */
border-radius: 50px; /* Pill shape */
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
text-align: center;
font-size: 1rem;
}






.btn-accent {
background: linear-gradient(135deg, #e74c3c, #c0392b);
color: white;
box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}
.btn-accent:hover {
background: linear-gradient(135deg, #c0392b, #a93226);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}


/* Header */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
z-index: 1000;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
height: 70px;
}

.nav-logo {
height: 35px;
}

.nav-list {
display: flex;
list-style: none;
gap: 2.5rem;
}

.nav-link {
text-decoration: none;
color: #2c3e50;
font-weight: 500;
transition: color 0.3s ease;
padding-bottom: 5px;
}

.nav-link:hover, .nav-link.active {
color: #C53A45;
border-bottom: 2px solid #C53A45;
}

.nav-toggle {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: #2c3e50;
}

/* --- Hero Section Base --- */
.hero {
min-height: 70vh;
display: flex;
align-items: center;
padding-top: 100px; /* Account for fixed header */
padding-bottom: 40px;
position: relative;
overflow: hidden;
}
.hero-content {
max-width: 600px;
text-align: left;
z-index: 2;
}
.hero-title {
font-size: 3.2rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.3rem;
color: #555;
margin-bottom: 2.5rem;
line-height: 1.7;
}
.hero-image-container {
z-index: 1;
}

/* Hero 1: Consultation Conversion */
.hero-consultation {
background: linear-gradient(120deg, #e0f7fa 0%, #b2ebf2 100%);
}
.hero-consultation .hero-content {
margin-right: auto; /* Push content to left */
}
.hero-consultation .hero-image-container {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
max-width: 50%;
}
.hero-consultation .hero-image {
width: 550px; /* Adjust as needed */
height: auto;
border-radius: 10px;
}
.hero-consultation .hero-title { color: #00796b; }
.hero-consultation .hero-subtitle { color: #004d40; }


/* Hero 2: Download Guide Conversion */
.hero-download {
background: #f4f6f8;
text-align: center; /* Center content for this hero */
}
.hero-download .hero-container {
display: flex;
flex-direction: column;
align-items: center;
}
.hero-download .hero-content {
max-width: 700px;
text-align: center;
margin-bottom: 2rem;
}
.hero-download .hero-title { color: #C53A45; }
.hero-download .hero-subtitle { color: #c53a46e7; }
.hero-download .guide-cover {
max-width: 250px;
height: auto;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
margin-bottom: 2rem;
}

/* Hero 3: Preference Center */
.hero-preferences {
background: #fff;
border-bottom: 1px solid #e0e0e0;
min-height: 50vh;
}
.hero-preferences .hero-content {
max-width: 700px;
text-align: center;
margin: 0 auto; /* Center content block */
}
.hero-preferences .hero-title { color: #424242; font-size: 2.8rem; }
.hero-preferences .hero-subtitle { color: #616161; font-size: 1.1rem; }
.hero-preferences .preference-icon {
font-size: 4rem;
color: #C53A45;
margin-bottom: 1.5rem;
}

/* Form-like Content Section */
.form-like-content {
background: #fff;
}
.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
}
.process-step-card {
background: #f8f9fa;
padding: 2.5rem 2rem;
border-radius: 10px;
border-left: 5px solid #C53A45;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.process-step-card h3 {
font-size: 1.5rem;
color: #2c3e50;
margin-bottom: 1rem;
display: flex;
align-items: center;
}
.process-step-card h3 i {
margin-right: 0.75rem;
color: #C53A45;
font-size: 1.3em;
}
.process-field {
margin-bottom: 1rem;
}
.process-field strong {
display: block;
color: #555;
margin-bottom: 0.25rem;
font-weight: 600;
}
.process-field span {
display: block;
color: #777;
font-size: 0.95rem;
}


/* Photo Gallery Section */
.photo-gallery {
    background: #f8f9fa;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.gallery-item {
overflow: hidden;
border-radius: 8px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
position: relative;
cursor: pointer;
}
.gallery-item img {
width: 100%;
height: 250px;
object-fit: cover;
display: block;
transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-item:hover img {
transform: scale(1.1);
filter: brightness(0.8);
}
.gallery-item .overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.7));
color: white;
padding: 20px 15px 15px;
transform: translateY(100%);
opacity: 0;
transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-item:hover .overlay {
transform: translateY(0);
opacity: 1;
}
.gallery-item .overlay h4 {
margin-bottom: 5px;
font-size: 1.1rem;
}
.gallery-item .overlay p {
font-size: 0.85rem;
}


/* Slider/Carousel Section */
.slider-section {
background: white;
}
.slider-container {
max-width: 800px;
margin: 0 auto;
position: relative;
overflow: hidden; /* Important for containing slides */
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.slider-wrapper {
display: flex;
transition: transform 0.5s ease-in-out;
}
.slide {
min-width: 100%;
box-sizing: border-box;
padding: 3rem 2.5rem;
text-align: center;
background-color: #f8f9fa; /* Default slide background */
}
.slide:nth-child(odd) { /* Alternate slide bg for visual */
background-color: #e9ecef;
}

.slide-image {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 1rem;
border: 3px solid #fff;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.slide-content p {
font-size: 1.15rem;
font-style: italic;
color: #555;
margin-bottom: 1.5rem;
}
.slide-content h4 {
font-size: 1.1rem;
color: #2c3e50;
margin-bottom: 0.25rem;
}
.slide-content span {
font-size: 0.9rem;
color: #777;
}
.slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
display: flex;
justify-content: space-between;
padding: 0 10px;
z-index: 10;
}
.slider-nav button {
background: rgba(0,0,0,0.4);
color: white;
border: none;
padding: 10px 12px;
border-radius: 50%;
cursor: pointer;
font-size: 1.2rem;
transition: background 0.3s ease;
}
.slider-nav button:hover {
background: rgba(0,0,0,0.7);
}
.slider-dots {
text-align: center;
margin-top: 1.5rem;
}
.slider-dots .dot {
height: 10px;
width: 10px;
margin: 0 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
cursor: pointer;
transition: background-color 0.3s ease;
}
.slider-dots .dot.active {
background-color: #C53A45;
}



/* Responsive Design */
@media (max-width: 992px) {
.hero-title { font-size: 2.8rem; }
.hero-subtitle { font-size: 1.15rem; }
.hero-consultation .hero-image-container { display: none; } /* Hide image on smaller screens */
.hero-consultation .hero-content { max-width: 100%; text-align: center; }
}

@media (max-width: 768px) {
.nav-menu {
    position: fixed;
    top: 70px; /* Header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    padding-top: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.nav-menu.active { left: 0; }
.nav-list { flex-direction: column; gap: 2rem; }
.nav-toggle { display: block; }

.section-title { font-size: 2rem; }
.hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
.hero-title { font-size: 2.2rem; }
.hero-subtitle { font-size: 1rem; }
.btn { padding: 10px 22px; font-size: 0.9rem;}

.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
.container { padding: 0 15px; }
.hero-title { font-size: 1.8rem; }
.section-title { font-size: 1.8rem; }
.footer-content { grid-template-columns: 1fr; text-align: center; }
.social-links { justify-content: center; }
.footer-bottom { flex-direction: column; text-align: center; }
}

