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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FEFDFA;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 25px;
}

h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 23px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 17px;
}

p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 1.5em;
}

a {
	color:#4c6eae;
}

/* Buttons */

.button-wrapper {
    height: 40px;
    width: 180px;
    margin: auto;
}


.primary-button {
    background-color: #f7c326;
    color: #333;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    border-bottom: 4px solid #333;
    border-right: 2px solid #333;
    position: relative;
    top: -2px;
    color: #333 !important;
    background-color: #e6af24;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 253, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #EBE2D9;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;

}

.logo img, .logo-image {
	width: 48px; 
	height: 48px; 
	margin-right: 10px;
}

.brand-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

nav ul {
    height: 50px;
    display: flex;
    align-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 20px;
}

nav a,
nav .plaintext-button {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

nav a:hover::after,
nav .plaintext-button:hover::after {
    width: 100%;
}

nav a::after,
nav .plaintext-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f7c326;
    transition: width 0.2s ease;
}


nav li.button a:hover::after {
    width: auto;
}

nav li.button a::after {
    content: auto;
    position: static;
    width: auto;
    height: auto;
    bottom: auto;
    left: auto;
    background-color: none;
    transition: none;
}


nav button.plaintext-button {
	background: none;
	border: none;
	padding: 0;
	color: #333;
	font-size: 13px;
	font-weight: 500;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit; 
}

li.pricing.button {
    min-width: 138px;
}


li.book {
	display:flex;
}
li.book .material-symbols-outlined {
	cursor: pointer;
}

/* Main Content */
main {
    margin-top: 70px;
}

.section {
    padding: 80px 20px;
}

.section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FEFDFA 0%, #f8f6f1 100%);
    padding: 120px 20px 80px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 58px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Services Section */
.services {
    background: white;
}

section.services .intro {
	max-width: 700px;
	margin: 0 auto 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.service-card {
    padding: 40px 40px 40px 40px;
    border: 1px solid #EBE2D9;
    border-radius: 20px;
    background: #FEFDFA;
	position:relative;
}

.service-card h3 {
    color: #333;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f7c326;
    font-weight: bold;
}



.service-card .price {

}

.price .button-wrapper {
    margin: 10px 0 10px 0;
}

.price.story .button-wrapper {
    display: flex;
    width: 100%;
    align-content: space-around;
    align-items: center;
    justify-content: flex-start;
}

.price a.purchase-link {
    font-size:14px;
	text-decoration:underline;
	color:#333;
	font-weight:400;
	padding-left:10px;
}

.price a:hover {
	text-decoration:none;
}




/* Who It's For Section */
.who-its-for {
    background: #f8f6f1;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.who-column h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.who-column ul {
    list-style: none;
}

.who-column li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.who-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4883a3;
    font-weight: bold;
}






/* Prooft Section */
.section.proof {
    background: white;
	text-align:center;
}

.logo-bar-wrapper,
.testimonials {
    margin: 40px auto;
	max-width:100%;
}
.testimonial {
    max-width: 800px;

    margin: auto;
}
p.quote {
    margin: 0 0 8px 0;
}



/* Why Section */
.why-choose {
    background: #f8f6f1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.why-item h3 {
    color: #333;
    margin-bottom: 15px;
}






/* FAQ Section Styles */

.faq-section {
    padding: 80px 20px;
    background: #FEFDFA;
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-width: 600px;
	
}

.faq-content {display:flex;}

.faq-section .service-card {
    min-width: 400px;
    max-height: fit-content;
}
.faq-section .service-card {
    min-width: 400px;
    max-height: fit-content;
    background: #ff575738;
    margin-left: 140px;
	border-color: #ff575729;
}
.faq-section .button-wrapper {
	margin:0 0 30px 0;
}
.faq-section .primary-button {

    width: 290px;
    height: 50px;
    font-weight: 600;
	
}


.faq-header {

    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: #333;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ebe2d978;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 50px 25px 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.faq-question:hover {
    color: #666;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 0 25px 0;
}

.faq-answer p {
    font-size: 16px;
    line-height: 26px;
    color: #666;
    margin: 0 0 20px 0;
	max-width:80%;
}





@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-header h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 40px 20px 0;
    }
}





/* CTA Section */
.cta {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    text-align: center;
}

.cta h2,
.cta p {
    color: white;
}

/* Footer */
footer {
    background: #333;
    color: #FEFDFA;
    padding: 60px 20px 20px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-section {
	text-align:left;
}


.footer-section.two, .footer-section.three {
    margin-top: 15px;
}

.footer-section h5 {
    font-size: 17px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: #FEFDFA;
    text-decoration: none;
    font-size: 14px;
    line-height: 25px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: disc;
    padding-left: 16px;
}

.footer-section li {
    margin-bottom: 10px;
}

footer .branding {
	display: flex; 
	align-items: center; 
	margin-bottom:16px;
	
}

footer .brand-name {
	position:relative;
	top:10px;
}

footer .bio, footer .bio-links {
	text-align:left;
}


.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #555;
  
}
.copyright a,  .copyright p {
  
    font-size: 11px;
	    color: #FEFDFA;
}



/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background: white;
    border-radius: 20px;
    padding: 20px;
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-iframe {
    width: 100%;
    height: calc(100% - 40px);
    border: none;
    border-radius: 10px;
}

/* Page Navigation */
.page-nav {
    display: none;
    position: fixed;
    top: 15px;
    left: 20px;
    z-index: 1001;
}

.page-nav.show {
    display: block;
}

.nav-button {
    background: #f7c326;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 5px 15px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 42px;
    }
    
    .services-grid,
    .who-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section {
        padding: 60px 20px;
    }
}

/* Main Content */
main {
    margin-top: 70px;
}

.section {
    padding: 60px 20px;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

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




/* Stats section */
.stats {
    background: #333;
    color: white;
    text-align: center;
}

.stats h2,
.stats p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 600;
    color: #f7c326;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
}




/* Footer - Minimal for landing page */
footer {
    background: #333;
    color: #FEFDFA;
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}

.footer-content a {
    color: #FEFDFA;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background: white;
    border-radius: 20px;
    padding: 20px;
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-iframe {
    width: 100%;
    height: calc(100% - 40px);
    border: none;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
        line-height: 42px;
    }
    
    .discount-highlight {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .benefits-grid,
    .difference-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section {
        padding: 50px 20px;
    }
    
    .primary-button.large {
        padding: 15px 35px;
        font-size: 16px;
    }
}