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

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Degular Text Regular", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Family Definitions */

@font-face {
    font-family: Degular Text Bold Italic;
    src: url(https://framerusercontent.com/assets/ZwCnrYmV2YOGfkk3utVyVY9Bbw.woff2);
    font-display: swap
}

@font-face {
    font-family: Degular Text Bold;
    src: url(https://framerusercontent.com/assets/tPWzCIrrvRV2MeKn2YrrEiEGs.woff2);
    font-display: swap
}

@font-face {
    font-family: Degular Text Regular;
    src: url(https://framerusercontent.com/assets/lxFwQvulXeKwr4VOp1EiovZvZE.woff2);
    font-display: swap
}

@font-face {
    font-family: Degular Display Semibold Regular;
    src: url(https://framerusercontent.com/assets/tZ6t1Y72NUaUTDGX6KYMgGUkBM.woff2);
    font-display: swap
}

@font-face {
    font-family: Degular Text Italic;
    src: url(https://framerusercontent.com/assets/uoe2IPXyulvYifbc4uFjqCIK7A.woff2);
    font-display: swap
}

@font-face {
    font-family: Degular Display Bold;
    src: url(https://framerusercontent.com/assets/eWwFq9smCHkDLvd1jQ59632oDRM.woff2);
    font-display: swap
}

@font-face {
    font-family: Degular Display Bold Italic;
    src: url(https://framerusercontent.com/assets/NKSucDj5zmVtGAoOCmhrIQsvHVU.woff2);
    font-display: swap
}

@font-face {
    font-family: Degular Display Semibold Italic;
    src: url(https://framerusercontent.com/assets/7CneJAsnD4SqFsqX2YeNP2TTjo0.woff2);
    font-display: swap
}

.section-title {
    font-family: "Degular Display Semibold Regular", "Degular Display Semibold Regular Placeholder", sans-serif;
    font-size: 46px;
    line-height: 120%;
    color: var(--token-741d1d47-a85f-40d3-9c63-da35ca7adfa4, rgb(18, 18, 18));
    margin-bottom: 2rem;
}

.section-title.color-white {
    color: #fff;
}

@media (max-width: 699px) {
    .section-title {
        font-size: 36px;
    }
} 

.button-primary {
    display: block;
    text-align: center;
    margin-left: auto;
    width: fit-content;
    background-color: var(--token-d7ccbca7-3323-4559-b08f-b5244211705f, rgb(0, 97, 255));
    border-radius: 100px;
    opacity: 1;
    color: white;
    font-family: "Degular Text Bold", "Degular Text Bold Placeholder", sans-serif;
    font-weight: bold;
    font-size: calc(var(--framer-blockquote-font-size, var(--framer-font-size, 18px)) * var(--framer-font-size-scale, 1));
    padding: 16px 36px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

@media (min-width: 700px) and (max-width: 1199px) {
    .button-primary {
        font-size: 18px;
        padding: 10px 20px;
    }
}

@media (max-width: 699px) {
    .button-primary {
        font-size: 18px;
        padding: 10px 20px;
    }
}

.button-primary:hover {
    background-color: rgb(0, 80, 210);
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    font-family: "Degular Text Regular", sans-serif;
}

.main-content {
    width: 100%;
}

/* FAQ Accordion Styles */
.faq-section {
    background-color: #f6f6f7;
    padding: 60px 0 40px;
    position: relative;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(0, 97, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 97, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 97, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 16px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: "Degular Text Bold", sans-serif;
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.4;
}

.faq-question:hover {
    background-color: rgba(0, 97, 255, 0.02);
}

.faq-question:focus {
    outline: none;
    background-color: rgba(0, 97, 255, 0.05);
}

.faq-question-text {
    flex: 1;
    margin-right: 16px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #0061ff;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(0, 97, 255, 0.02);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px;
}

.faq-answer-content {
    padding-top: 16px;
    font-family: "Degular Text Regular", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.faq-answer-content p {
    margin-bottom: 16px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-answer-content strong {
    font-family: "Degular Text Bold", sans-serif;
    color: #1e1e1e;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid rgba(0, 97, 255, 0.1);
}

.faq-cta-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    font-family: "Degular Text Regular", sans-serif;
}

/* Footer Section Styles */
.footer-section {
    background-color: #fff;
    padding: 0;
    position: relative;
    width: 100%;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 50px 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.about-image img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .about-image {
        margin: 0 auto;
        max-width: 100%;
        height: 100%;
    }
}

.about-content {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.about-header {
    margin-bottom: 24px;
}

.about-label {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 110%;
    color: #0061ff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-title {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 46px;
    line-height: 110%;
    color: #1e1e1e;
    margin: 0;
}

.about-copy {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    text-align: left;
}

.about-copy p {
    margin-bottom: 16px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-copy strong {
    font-family: "Degular Text Bold", sans-serif;
    color: #1e1e1e;
}

/* Final CTA Section */
.footer-cta {
    background: radial-gradient(50% 50% at 50% 100%, #164ba1 0, #1e1e1e 100%);
    padding: 60px 0 60px;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.cta-question {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 110%;
    color: #fff;
    margin-bottom: 48px;
}

.cta-copy {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.cta-copy p {
    margin-bottom: 16px;
    text-align: left;
}

.cta-copy p:last-child {
    margin-bottom: 0;
}

.cta-copy h4 {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 24px 0 16px;
    text-align: left;
}

.cta-copy ul {
    margin: 16px 0;
    padding-left: 20px;
    text-align: left;
}

.cta-copy li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.cta-copy strong {
    font-family: "Degular Text Bold", sans-serif;
    color: #fff;
}

.cta-action {
    margin-bottom: 60px;
}

.cta-title {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 80px;
    line-height: 110%;
    color: #fff;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background-color: #0061ff;
    border-radius: 100px;
    box-shadow: 0 14px 33px rgba(18, 18, 18, 0.16);
    padding: 34px 59px;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 898px;
    width: 100%;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(18, 18, 18, 0.25);
}

.button-text {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 50px;
    letter-spacing: -0.02em;
    color: #fff;
}

.button-arrow {
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
}

.brand-logo {
    width: 100px;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.brand-name {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 18px;
    letter-spacing: 0.32px;
    line-height: 19px;
    color: #fff;
    margin: 0;
}

.brand-tagline {
    font-family: "Degular Text Regular", sans-serif;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0 20px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 15px;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 24px 20px;
    }
    
    .faq-answer-content {
        font-size: 14px;
    }
    
    .about-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .about-image {
        width: 100%;
        max-width: 300px;
        height: 400px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-title {
        font-size: 38px;
    }
    
    .cta-question {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 60px;
    }
    
    .cta-button {
        padding: 24px 30px;
        flex-direction: row;
        gap: 16px;
    }
    
    .button-text {
        font-size: 36px;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 20px 18px;
    }
    
    .faq-answer-content {
        font-size: 13px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .about-section {
        padding: 20px 15px;
        gap: 24px;
    }
    
    .about-image {
        max-width: 250px;
        height: 300px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-copy {
        font-size: 14px;
    }
    
    .cta-question {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 48px;
    }
    
    .cta-button {
        padding: 20px 30px;
    }
    
    .button-text {
        font-size: 28px;
    }
    
    .brand-logo {
        width: 80px;
    }
}

/* Animation for smooth accordion transitions */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-content {
    animation: slideDown 0.3s ease;
}

/* Focus styles for accessibility */
.faq-question:focus-visible {
    outline: 2px solid #0061ff;
    outline-offset: -2px;
}

/* Hover effects for better UX */
.faq-item:hover .faq-question {
    color: #0061ff;
}

.faq-item:hover .faq-icon {
    color: #0061ff;
    transform: scale(1.1);
}

.faq-question[aria-expanded="true"]:hover .faq-icon {
    transform: rotate(45deg) scale(1.1);
}

/* Pricing Section Styles */
.pricing-section {
    background: radial-gradient(50% 50% at 50% 100%, #164ba1 0, #1e1e1e 100%);
    padding: 60px 0 60px;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-subtitle {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 18px;
    color: #fff;
    margin-top: 16px;
    opacity: 0.8;
}

.pricing-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.plan-card {
    background: #121212;
    border: 2px solid #0061ff;
    border-radius: 20px;
    padding: 24px;
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-header {
    margin-bottom: 32px;
}

.plan-name {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 32px;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 110%;
}

.plan-description {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.plan-pricing {
    margin-bottom: 32px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-amount {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 48px;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.plan-features {
    margin-bottom: 32px;
    flex: 1;
}

.feature-item {
    margin-bottom: 6px;
    padding: 4px 0;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-text {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.feature-item.excluded .feature-text {
    color: rgba(255, 255, 255, 0.4);
    opacity: .5;
}

.plan-summary {
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(0, 97, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #0061ff;
}

.summary-text {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.plan-coaching {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.coaching-label {
    background: rgba(0, 97, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
}

.coaching-text {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 12px;
    color: #0061ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coaching-status {
    text-align: right;
}

.status-text {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.plan-action {
    margin-top: auto;
    text-align: center;
}

.plan-action .button-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0 60px;
    }
    
    .pricing-container {
        padding: 0 20px;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .plan-card {
        max-width: none;
        padding: 24px 20px;
    }
    
    .plan-name {
        font-size: 28px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .pricing-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0 40px;
    }
    
    .pricing-container {
        padding: 0 15px;
    }
    
    .plan-card {
        padding: 16px 12px;
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .summary-text {
        font-size: 13px;
    }
}

/* Steps Section Styles */
.steps-section {
    background-color: #fff;
    padding: 80px 0 40px;
    position: relative;
    width: 100%;
}

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

.steps-header {
    text-align: center;
    margin-bottom: 80px;
}

.steps-intro {
    margin: 0 auto;
    margin-top: 24px;
}

.steps-intro p {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    color: #666;
    margin-bottom: 16px;
}

.steps-intro p:last-child {
    margin-bottom: 0;
    font-family: "Degular Text Bold", sans-serif;
    color: #1e1e1e;
}

.steps-grid {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    padding: 32px;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .steps-grid {
        padding: 20px;
    }
}

.step-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 0;
    background: #f8f9fa;
    /* border-radius: 16px;
    border: 1px solid rgba(0, 97, 255, 0.1);
    transition: all 0.3s ease; */
}

/* .step-card:hover {
    border-color: rgba(0, 97, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 97, 255, 0.1);
    transform: translateY(-2px);
} */

.step-number {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.number {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 32px;
    color: #0061ff;
    line-height: 1;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0061ff;
    box-shadow: 0 4px 16px rgba(0, 97, 255, 0.15);
}

.step-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #0061ff, rgba(0, 97, 255, 0.3));
    border-radius: 1px;
}

.step-card:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 28px;
    color: #1e1e1e;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.step-description {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.step-description:last-child {
    margin-bottom: 24px;
}

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

.steps-cta .button-primary {
    margin: 0 auto;
}

/* Responsive Design for Steps */
@media (max-width: 768px) {
    .steps-section {
        padding: 40px 0 20px;
    }
    
    .steps-container {
        padding: 0 20px;
    }
    
    .steps-header {
        margin-bottom: 60px;
    }
    
    .steps-intro p {
        font-size: 16px;
    }
    
    .step-card {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }
    
    .step-number {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
    
    .step-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, #0061ff, rgba(0, 97, 255, 0.3));
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .step-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 20px 0 0px;
    }
    
    .steps-container {
        padding: 0 15px;
    }
    
    .step-card {
        padding: 20px;
        gap: 20px;
    }
    
    .number {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

/* Why Section Styles */
.why-section {
    background-color: #fff;
    padding: 60px 0 40px;
    position: relative;
    width: 100%;
}

.why-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.why-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.why-images {
    flex: 0 0 45%;
    position: relative;
    height: 600px;
}

.background-image {
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-image {
    position: absolute;
    top: 10px;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-text {
    flex: 1;
    max-width: 600px;
}

.why-header {
    margin-bottom: 32px;
}

.why-copy {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

.why-copy p {
    margin-bottom: 16px;
}

.why-copy p:last-child {
    margin-bottom: 0;
}

.commitment-section {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(0, 97, 255, 0.1);
}

.commitment-title {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 18px;
    color: #1e1e1e;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.commitment-item {
    margin-bottom: 24px;
}

.commitment-item:last-child {
    margin-bottom: 0;
}

.commitment-badge {
    font-family: "Degular Text Bold", sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.commitment-description {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

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

.why-cta .button-primary {
    margin: 0 auto;
}

/* Responsive Design for Why Section */
@media (max-width: 1024px) {
    .why-content {
        gap: 60px;
    }
    
    .why-images {
        flex: 0 0 40%;
        height: 500px;
    }
    
    .profile-image {
        width: 100%;
        height: 100%;
        top: 10px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 40px 0 20px;
    }
    
    .why-container {
        padding: 0 20px;
    }
    
    .why-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-images {
        flex: none;
        height: 350px;
        order: 2;
        position: relative;
    }
    
    .background-image {
        left: -20%;
        width: 140%;
        height: 100%;
    }
    
    .profile-image {
        position: relative;
        margin: 0 auto;
        width: 80%;
        height: 90%;
        top: 20px;
        right: 10%;
        left: auto;
    }
    
    .why-text {
        order: 1;
        max-width: none;
    }
    
    .commitment-section {
        padding: 24px;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    
    .commitment-title {
        font-size: 16px;
    }
    
    .commitment-badge {
        font-size: 15px;
    }
    
    .commitment-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 20px 0 0px;
    }
    
    .why-container {
        padding: 0 15px;
    }
    
    .why-images {
        height: 280px;
    }
    
    .background-image {
        left: -10%;
        width: 120%;
        height: 100%;
    }
    
    .profile-image {
        width: 85%;
        height: 85%;
        top: 25px;
        right: 7.5%;
        left: auto;
    }
    
    .why-copy {
        font-size: 15px;
    }
    
    .commitment-section {
        padding: 20px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
    
    .commitment-title {
        font-size: 15px;
    }
    
    .commitment-badge {
        font-size: 14px;
    }
    
    .commitment-description {
        font-size: 13px;
    }
}

/* Goals Section Styles */
.goals-section {
    background-color: #f6f6f7;
    padding: 140px 0 80px;
    position: relative;
    width: 100%;
}

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

.goals-header {
    text-align: center;
    margin-bottom: 80px;
}

.goals-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.goal-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 97, 255, 0.1);
    transition: all 0.3s ease;
}

.goal-card:hover {
    border-color: rgba(0, 97, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 97, 255, 0.1);
    transform: translateY(-2px);
}

.goal-icon-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0061ff;
    box-shadow: 0 4px 16px rgba(0, 97, 255, 0.15);
}

.goal-icon {
    font-size: 32px;
    line-height: 1;
}

.goal-content {
    flex: 1;
}

.goal-title {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 32px;
    color: #1e1e1e;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.goal-copy {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.goal-copy p {
    margin-bottom: 16px;
}

.goal-copy p:last-child {
    margin-bottom: 0;
}

.goal-subtitle {
    font-family: "Degular Text Bold", sans-serif;
    color: #0061ff;
    margin-bottom: 16px;
}

.goal-copy em {
    font-family: "Degular Text Bold", sans-serif;
    font-style: normal;
    color: #1e1e1e;
}

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

.goals-cta .button-primary {
    margin: 0 auto;
}

/* Responsive Design for Goals */
@media (max-width: 768px) {
    .goals-section {
        padding: 80px 0 60px;
    }
    
    .goals-container {
        padding: 0 20px;
    }
    
    .goals-header {
        margin-bottom: 60px;
    }
    
    .goals-grid {
        gap: 20px;
    }
    
    .goal-card {
        flex-direction: column;
        gap: 24px;
        padding: 30px;
        text-align: center;
    }
    
    .goal-icon-container {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .goal-icon {
        font-size: 24px;
    }
    
    .goal-title {
        font-size: 28px;
    }
    
    .goal-copy {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .goals-section {
        padding: 60px 0 40px;
    }
    
    .goals-container {
        padding: 0 15px;
    }
    
    .goals-grid {
        gap: 10px;
    }
    
    .goal-card {
        padding: 24px;
        gap: 20px;
    }
    
    .goal-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .goal-icon {
        font-size: 20px;
    }
    
    .goal-title {
        font-size: 24px;
    }
    
    .goal-copy {
        font-size: 14px;
    }
}

/* Professionals Section Styles */
.professionals-section {
    background-color: #fff;
    padding: 0 0 40px;
    position: relative;
    width: 100%;
}

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

.professionals-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.professionals-image {
    flex: 0 0 450px;
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.professionals-text {
    flex: 1;
    max-width: 700px;
}

.professionals-header {
    margin-bottom: 32px;
}

.professionals-copy {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.professionals-copy-2 {
    margin-bottom: 60px;
}

.professionals-copy p {
    margin-bottom: 16px;
}

.professionals-copy p:last-child {
    margin-bottom: 0;
}

.professionals-copy span {
    font-family: "Degular Text Bold", sans-serif;
    color: #0061ff;
}

.professionals-highlight {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    color: #1e1e1e;
    margin: 32px 0;
    padding: 24px;
    background: rgba(0, 97, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #0061ff;
}

.professionals-highlight span {
    color: #0061ff;
}

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

.professionals-cta .button-primary {
    margin: 0 auto;
}

/* Responsive Design for Professionals */
@media (max-width: 1024px) {
    .professionals-content {
        gap: 60px;
    }
    
    .professionals-image {
        flex: 0 0 250px;
    }
    
    .image-wrapper {
        height: 250px;
    }
    
    .professionals-highlight {
        font-size: 22px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .professionals-section {
        padding: 80px 0 60px;
    }
    
    .professionals-container {
        padding: 0 20px;
    }
    
    .professionals-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .professionals-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .image-wrapper {
        height: 300px;
    }
    
    .professionals-text {
        max-width: none;
        text-align: center;
    }
    
    .professionals-highlight {
        font-size: 20px;
        padding: 20px;
        margin: 24px 0;
    }
}

@media (max-width: 480px) {
    .professionals-section {
        padding: 60px 0 40px;
    }
    
    .professionals-container {
        padding: 0 15px;
    }
    
    .professionals-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .professionals-image {
        max-width: 250px;
    }
    
    .image-wrapper {
        height: 250px;
    }
    
    .professionals-copy {
        font-size: 15px;
    }
    
    .professionals-highlight {
        font-size: 18px;
        padding: 16px;
        margin: 20px 0;
    }
}

/* Features Section Styles */
.features-section {
    background-color: #f3f5f8;
    padding: 40px 0 40px;
    position: relative;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 60px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f3f5f8;
    border-radius: 10px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 0;
}

.feature-icon-container {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0061ff;
    box-shadow: 0 4px 16px rgba(0, 97, 255, 0.15);
}

.feature-icon {
    font-size: 24px;
    line-height: 1;
    height: auto;
    width: auto;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-size: 20px;
    color: #1e1e1e;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.feature-desc {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

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

.features-cta .button-primary {
    margin: 0 auto;
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px;
    }
    
    .feature-item {
        gap: 20px;
    }
    
    .feature-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0 20px;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 20px 0 0px;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .features-grid {
        padding: 20px;
        gap: 24px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        gap: 16px;
    }
    
    .feature-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-desc {
        font-size: 14px;
    }
}

/* Tours Section Styles */
.tours-section {
    background-color: #fff;
    padding: 80px 0 40px;
    position: relative;
    width: 100%;
}

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

.tours-header {
    text-align: center;
    margin-bottom: 40px;
}

.tours-header .section-title {
    margin-bottom: 0;
}

.tours-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    max-width: 800px;
    width: 100%;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-container:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0061ff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.video-container:hover .play-button {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

/* Responsive Design for Tours */
@media (max-width: 1024px) {
    .tours-section {
        padding: 60px 0 40px;
    }
    
    .video-wrapper {
        max-width: 700px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .tours-section {
        padding: 40px 0 20px;
    }
    
    .tours-container {
        padding: 0 20px;
    }
    
    .tours-header {
        margin-bottom: 20px;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .tours-section {
        padding: 20px 0 0px;
    }
    
    .tours-container {
        padding: 0 15px;
    }
    
    .tours-header {
        margin-bottom: 10px;
    }
    
    .video-container {
        border-radius: 16px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Hero Section Styles */
.hero-section {
    background-color: #fff;
    position: relative;
    width: 100%;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    padding: 90px 0 0 0;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.dotted-pattern {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
    object-position: center;
    object-fit: contain;
    margin-top: 300px;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-text {
    max-width: 900px;
}

.hero-heading {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 56px;
    line-height: 110%;
    color: #1e1e1e;
    margin: 0 0 32px 0;
    font-weight: 500;
}

.hero-heading span {
    display: block;
}

.hero-heading strong {
    font-family: "Degular Display Semibold Regular", sans-serif;
    font-weight: 600;
}

.hero-description {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin: 0 auto;
    max-width: 600px;
}

.hero-description span {
    color: #1e1e1e;
}

.hero-cta {
    margin-top: 20px;
}

.hero-cta .button-primary {
    font-size: 20px;
    padding: 20px 40px;
    margin: 0;
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 56px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-cta .button-primary {
        font-size: 18px;
        padding: 18px 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-heading {
        font-size: 48px;
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta .button-primary {
        font-size: 16px;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 24px;
    }
    
    .hero-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-cta .button-primary {
        font-size: 15px;
        padding: 14px 28px;
    }
}

/* Header Section Styles */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-nav {
    width: 100%;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-family: "Degular Text Regular", sans-serif;
    font-size: 16px;
    color: #1e1e1e;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: #0061ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0061ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.header-cta .button-primary {
    font-size: 14px;
    padding: 12px 24px;
    margin: 0;
}

/* Responsive Design for Header */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .header-cta .button-primary {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-content {
        gap: 20px;
        padding: 12px 0;
    }
    
    .header-logo img {
        height: 32px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .header-cta .button-primary {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 15px;
        padding: 10px 0;
    }
    
    .header-logo img {
        height: 28px;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .header-cta .button-primary {
        font-size: 11px;
        padding: 6px 12px;
    }
}
