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

:root {
--primary: #1a1a2e;
--secondary: #16213e;
--accent: #e94560;
--gold: #f4a261;
--light: #fafafa;
--dark: #0f0f0f;
--text: #2d2d2d;
--border: #e8e8e8;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text);
background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 400;
line-height: 1.3;
}

h1 {
font-size: 2.8rem;
}

h2 {
font-size: 2.2rem;
margin-bottom: 1.2rem;
}

h3 {
font-size: 1.6rem;
margin-bottom: 0.8rem;
}

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

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 18px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.privacy-content p {
margin: 0;
font-size: 14px;
}

.privacy-buttons {
display: flex;
gap: 15px;
}

.privacy-buttons button,
.privacy-buttons a {
padding: 8px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: all 0.3s ease;
}

.privacy-buttons button {
background: var(--accent);
color: var(--dark);
}

.privacy-buttons button:hover {
background: var(--secondary);
color: white;
}

.privacy-buttons a {
background: transparent;
color: white;
border: 1px solid white;
}

.privacy-buttons a:hover {
background: white;
color: var(--dark);
}

.header {
background: rgba(255, 255, 255, 0.98);
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.6rem;
font-weight: 600;
color: var(--primary);
}

.nav {
display: flex;
gap: 30px;
}

.nav a {
font-size: 14px;
font-weight: 400;
color: var(--text);
position: relative;
}

.nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: width 0.3s ease;
}

.nav a:hover::after {
width: 100%;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary);
transition: all 0.3s ease;
}

.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(to right, var(--primary) 50%, transparent 50%), url('../lens_archive/hero-main.png') no-repeat;
background-size: auto, cover;
background-position: center, right center;
overflow: hidden;
padding: 100px 0 80px;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 50%;
bottom: 0;
background: var(--secondary);
opacity: 0.3;
z-index: 1;
}

.hero::after {
content: '';
position: absolute;
bottom: -30%;
left: -10%;
width: 60%;
height: 100%;
background: var(--accent);
opacity: 0.1;
border-radius: 50%;
z-index: 1;
}

.hero .container {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
}

.hero-content {
color: white;
margin-bottom: 3rem;
}

.hero-content h1 {
font-size: 4.2rem;
margin-bottom: 1.5rem;
line-height: 1.1;
font-weight: 600;
}

.hero-content h1 span {
color: var(--accent);
display: block;
}

.hero-content p {
font-size: 1.15rem;
margin-bottom: 2.5rem;
opacity: 0.9;
line-height: 1.7;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-image {
position: relative;
z-index: 2;
display: none;
}

.hero-image img {
border-radius: 12px;
box-shadow: 0 30px 60px rgba(0,0,0,0.4);
width: 100%;
height: auto;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 3rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

.stat-number {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
font-weight: 600;
color: var(--accent);
display: block;
margin-bottom: 0.3rem;
}

.stat-label {
font-size: 0.9rem;
opacity: 0.8;
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 12px 35px;
border-radius: 4px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.btn-primary {
background: var(--accent);
color: var(--dark);
}

.btn-primary:hover {
background: transparent;
border-color: var(--accent);
color: var(--accent);
}

.btn-secondary {
background: transparent;
border: 2px solid var(--accent);
color: var(--accent);
}

.btn-secondary:hover {
background: var(--accent);
color: var(--dark);
}

.about {
padding: 80px 0;
}

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.about-text h2 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.about-text p {
margin-bottom: 1.2rem;
color: var(--text);
}

.about-text .btn-secondary {
margin-top: 1.5rem;
}

.about-image img {
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services {
padding: 80px 0;
background: white;
}

.services h2 {
text-align: center;
color: var(--primary);
margin-bottom: 3rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.service-card {
text-align: center;
padding: 35px 25px;
border: 1px solid var(--border);
border-radius: 8px;
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-color: var(--accent);
}

.service-card .icon-wrapper {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--accent), var(--gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.2rem;
font-size: 1.8rem;
color: white;
}

.service-card h3 {
color: var(--primary);
margin-bottom: 1rem;
}

.service-card p {
font-size: 14px;
color: var(--text);
}

.portfolio {
padding: 80px 0;
}

.portfolio h2 {
text-align: center;
color: var(--primary);
margin-bottom: 3rem;
}

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

.portfolio-item {
position: relative;
overflow: hidden;
border-radius: 8px;
aspect-ratio: 4/5;
}

.portfolio-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.portfolio-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding: 30px 20px;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
transform: translateY(0);
}

.portfolio-item:hover img {
transform: scale(1.05);
}

.portfolio-overlay h3 {
color: white;
font-size: 1.4rem;
}

.process {
padding: 80px 0;
background: white;
}

.process h2 {
text-align: center;
color: var(--primary);
margin-bottom: 3rem;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
}

.step {
text-align: center;
padding: 30px 20px;
}

.step-number {
font-family: 'Cormorant Garamond', serif;
font-size: 3rem;
color: var(--accent);
margin-bottom: 1rem;
font-weight: 600;
}

.step h3 {
color: var(--primary);
margin-bottom: 0.8rem;
}

.step p {
font-size: 14px;
color: var(--text);
}

.testimonials {
padding: 80px 0;
background: var(--light);
}

.testimonials h2 {
text-align: center;
color: var(--primary);
margin-bottom: 3rem;
}

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

.testimonial-card {
background: white;
padding: 35px 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
position: relative;
}

.testimonial-card::before {
content: '"';
position: absolute;
top: 20px;
left: 20px;
font-size: 4rem;
color: var(--accent);
opacity: 0.2;
font-family: 'Cormorant Garamond', serif;
line-height: 1;
}

.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
color: var(--text);
line-height: 1.7;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}

.author-avatar {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--accent), var(--gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
font-size: 1.2rem;
}

.author-info h4 {
margin: 0;
color: var(--primary);
font-size: 1rem;
}

.author-info p {
margin: 0;
font-size: 0.85rem;
color: var(--text);
opacity: 0.7;
}

.cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.cta-content {
text-align: center;
color: white;
}

.cta-content h2 {
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.page-hero {
padding: 80px 0 60px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
text-align: center;
color: white;
}

.page-hero h1 {
margin-bottom: 1rem;
}

.page-hero p {
font-size: 1.1rem;
opacity: 0.95;
}

.content-section {
padding: 80px 0;
}

.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.content-text h2 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.content-text p {
margin-bottom: 1.2rem;
color: var(--text);
}

.content-image img {
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.packages {
padding: 80px 0;
background: white;
}

.packages h2 {
text-align: center;
color: var(--primary);
margin-bottom: 3rem;
}

.packages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.package-card {
border: 2px solid var(--border);
border-radius: 8px;
padding: 35px 25px;
text-align: center;
transition: all 0.3s ease;
position: relative;
}

.package-card.featured {
border-color: var(--accent);
transform: scale(1.05);
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.package-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: var(--dark);
padding: 5px 20px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
}

.package-card h3 {
color: var(--primary);
margin-bottom: 1rem;
}

.package-price {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 1.5rem;
font-weight: 600;
}

.package-features {
list-style: none;
margin-bottom: 2rem;
text-align: left;
}

.package-features li {
padding: 8px 0;
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

.package-features i {
color: var(--accent);
font-size: 12px;
}

.benefits {
padding: 80px 0;
}

.benefits h2 {
text-align: center;
color: var(--primary);
margin-bottom: 3rem;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.benefit-item {
text-align: center;
padding: 30px 20px;
}

.benefit-item .icon-wrapper {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--accent), var(--gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.2rem;
font-size: 1.8rem;
color: white;
}

.benefit-item h3 {
color: var(--primary);
margin-bottom: 0.8rem;
}

.benefit-item p {
font-size: 14px;
color: var(--text);
}

.booking-info {
padding: 80px 0;
}

.booking-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.booking-text h2 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.booking-text p {
margin-bottom: 1.2rem;
color: var(--text);
}

.info-boxes {
display: grid;
gap: 20px;
margin-top: 2rem;
}

.info-box {
display: flex;
gap: 15px;
padding: 20px;
background: white;
border-radius: 8px;
border: 1px solid var(--border);
}

.info-box .icon-wrapper {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--accent), var(--gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
color: white;
flex-shrink: 0;
}

.info-box h3 {
font-size: 1.2rem;
color: var(--primary);
margin-bottom: 0.5rem;
}

.info-box p {
font-size: 14px;
margin: 0;
}

.booking-form-container {
background: white;
padding: 35px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-form-container h2 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.session-types {
padding: 80px 0;
background: white;
}

.session-types h2 {
text-align: center;
color: var(--primary);
margin-bottom: 3rem;
}

.session-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.session-card {
text-align: center;
padding: 35px 25px;
border: 1px solid var(--border);
border-radius: 8px;
transition: all 0.3s ease;
}

.session-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-color: var(--accent);
}

.session-card .icon-wrapper {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--accent), var(--gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.2rem;
font-size: 1.8rem;
color: white;
}

.session-card h3 {
color: var(--primary);
margin-bottom: 1rem;
}

.session-card p {
font-size: 14px;
color: var(--text);
}

.contact-section {
padding: 80px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info-side h2 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.contact-info-side > p {
margin-bottom: 2rem;
color: var(--text);
}

.contact-details {
display: grid;
gap: 25px;
}

.contact-item {
display: flex;
gap: 20px;
}

.contact-item .icon-wrapper {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--accent), var(--gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: white;
flex-shrink: 0;
}

.contact-item h3 {
font-size: 1.1rem;
color: var(--primary);
margin-bottom: 0.5rem;
}

.contact-item p {
font-size: 14px;
color: var(--text);
margin: 0;
}

.contact-form-side {
background: white;
padding: 35px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-side h2 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 4px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--accent);
}

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-top: 3px;
cursor: pointer;
}

.checkbox-label span {
flex: 1;
}

.map-section {
padding: 80px 0;
background: white;
}

.map-section h2 {
text-align: center;
color: var(--primary);
margin-bottom: 2rem;
}

.map-container {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-section,
.error-section {
padding: 100px 0;
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.thankyou-content .icon-wrapper {
width: 100px;
height: 100px;
background: linear-gradient(135deg, var(--accent), var(--gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: white;
margin: 0 auto 1.5rem;
}

.thankyou-content h1,
.error-content h1 {
color: var(--primary);
margin-bottom: 1.5rem;
}

.error-content h1 {
font-size: 5rem;
color: var(--accent);
}

.error-content h2 {
color: var(--primary);
margin-bottom: 1rem;
}

.thankyou-content p,
.error-content p {
margin-bottom: 1.2rem;
color: var(--text);
font-size: 1.05rem;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 2rem;
flex-wrap: wrap;
}

.policy-section {
padding: 80px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 50px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.policy-content h1 {
color: var(--primary);
margin-bottom: 1rem;
}

.policy-date {
color: var(--secondary);
font-size: 14px;
margin-bottom: 2rem;
font-style: italic;
}

.policy-content h2 {
color: var(--primary);
margin-top: 2.5rem;
margin-bottom: 1rem;
font-size: 1.8rem;
}

.policy-content p {
margin-bottom: 1.2rem;
color: var(--text);
line-height: 1.8;
}

.policy-content strong {
color: var(--primary);
font-weight: 500;
}

.footer {
background: var(--dark);
color: white;
padding: 30px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 13px;
opacity: 0.9;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 13px;
opacity: 0.9;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
color: var(--accent);
}

.featured-work {
padding: 80px 0;
background: white;
}

.featured-work h2 {
text-align: center;
color: var(--primary);
margin-bottom: 1rem;
}

.featured-work > .container > p {
text-align: center;
max-width: 600px;
margin: 0 auto 3rem;
color: var(--text);
}

.work-showcase {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
margin-bottom: 60px;
}

.work-showcase:nth-child(even) .work-image {
order: 2;
}

.work-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
width: 100%;
}

.work-details h3 {
color: var(--primary);
margin-bottom: 1rem;
font-size: 2rem;
}

.work-details p {
color: var(--text);
margin-bottom: 1rem;
line-height: 1.7;
}

.work-meta {
display: flex;
gap: 20px;
margin-top: 1.5rem;
flex-wrap: wrap;
}

.meta-item {
font-size: 0.9rem;
color: var(--text);
}

.meta-item strong {
color: var(--accent);
}

@media (max-width: 768px) {
.hero {
min-height: auto;
padding: 80px 0 60px;
background: var(--primary);
}

.hero::before {
right: 0;
opacity: 0;
}

.hero-content h1 {
font-size: 2.8rem;
}

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

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

.work-showcase {
grid-template-columns: 1fr;
gap: 30px;
}

.work-showcase:nth-child(even) .work-image {
order: 0;
}
h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
}

h3 {
font-size: 1.3rem;
}

.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateX(-100%);
transition: transform 0.3s ease;
gap: 15px;
}

.nav.active {
transform: translateX(0);
}

.menu-toggle {
display: flex;
}

.hero-content h1 {
font-size: 2.2rem;
}

.hero-content p {
font-size: 1rem;
}

.hero-stats {
gap: 15px;
margin-top: 2rem;
}

.stat-number {
font-size: 1.8rem;
}

.about-grid,
.content-grid,
.booking-grid,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.about,
.services,
.portfolio,
.process,
.cta,
.content-section,
.packages,
.benefits,
.booking-info,
.session-types,
.contact-section,
.map-section,
.policy-section {
padding: 60px 0;
}

.privacy-content {
flex-direction: column;
text-align: center;
}

.privacy-buttons {
flex-direction: column;
width: 100%;
}

.privacy-buttons button,
.privacy-buttons a {
width: 100%;
}

.footer-content {
flex-direction: column;
text-align: center;
}

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

.policy-content {
padding: 30px 25px;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}
}

@media (max-width: 480px) {
body {
font-size: 14px;
}

.container {
padding: 0 15px;
}

h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.5rem;
}

h3 {
font-size: 1.2rem;
}

.hero h1 {
font-size: 2rem;
}

.hero p {
font-size: 0.95rem;
}

.btn-primary,
.btn-secondary {
padding: 10px 25px;
font-size: 13px;
}

.services-grid,
.portfolio-grid,
.process-steps,
.packages-grid,
.benefits-grid,
.session-grid {
grid-template-columns: 1fr;
}

.package-card.featured {
transform: scale(1);
}

.policy-content {
padding: 25px 20px;
}

.booking-form-container,
.contact-form-side {
padding: 25px 20px;
}
}

.service-card .icon-wrapper,
.benefit-item .icon-wrapper,
.session-card .icon-wrapper {
width: 60px;
height: 60px;
font-size: 1.5rem;
}

.info-box .icon-wrapper,
.contact-item .icon-wrapper {
width: 45px;
height: 45px;
font-size: 1.1rem;
}

@media (max-width: 320px) {
.hero-content h1 {
font-size: 1.9rem;
}

.hero-stats {
grid-template-columns: 1fr;
gap: 15px;
}
body {
font-size: 13px;
}

.container {
padding: 0 12px;
}

h1 {
font-size: 1.6rem;
}

h2 {
font-size: 1.3rem;
}

.hero h1 {
font-size: 1.8rem;
}

.btn-primary,
.btn-secondary {
padding: 9px 20px;
font-size: 12px;
}

.service-card,
.session-card,
.benefit-item,
.step {
padding: 25px 15px;
}

.package-card {
padding: 25px 15px;
}

.policy-content {
padding: 20px 15px;
}
}
