:root {
    --primary-color: #7209b7;
    --light-shade: #f3e5f9;
    --dark-shade: #4c0677;
    --text-color: #4c0677;
    --white: #ffffff;
    --shadow: 0 4px 8px rgba(114, 9, 183, 0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-shade) 0%, var(--white) 100%);
}

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

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--dark-shade);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(114, 9, 183, 0.25);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.challenge-identifier {
    padding: 80px 0;
}

.challenge-identifier h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.challenge-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

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

.relationship-approach {
    padding: 80px 0;
    background: var(--light-shade);
}

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

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.approach-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mastery-program {
    padding: 80px 0;
}

.mastery-program h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.program-module {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

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

.connection-techniques {
    padding: 80px 0;
    background: var(--light-shade);
}

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

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

.technique-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.technique-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.techniques-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.transformation-stories {
    padding: 80px 0;
}

.transformation-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.story-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-shade) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-section p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-option h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-button.primary:hover {
    background: var(--light-shade);
    color: var(--dark-shade);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.contact-section {
    padding: 80px 0;
    background: var(--light-shade);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    background: var(--white);
    padding: 0 5px;
    font-size: 12px;
    color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: var(--shadow);
}

.submit-button:hover {
    background: var(--dark-shade);
}

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

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

.footer-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--light-shade);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--light-shade);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .techniques-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section,
    .challenge-identifier,
    .relationship-approach,
    .mastery-program,
    .connection-techniques,
    .transformation-stories,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 480px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        min-width: auto;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-module {
        min-width: auto;
    }
}

.policy {
    margin-top: 5%;
    margin-bottom: 5%;

    margin-left: 15%;
    margin-right: 15%;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-shade) 0%, var(--white) 100%);
}

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

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

.about-hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sales-philosophy {
    padding: 80px 0;
}

.sales-philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.philosophy-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.philosophy-principles {
    display: grid;
    gap: 20px;
}

.principle-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

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

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.relationship-methodology {
    padding: 80px 0;
    background: var(--light-shade);
}

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

.methodology-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.methodology-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.methodology-list li {
    padding: 10px 0;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(114, 9, 183, 0.1);
}

.methodology-list strong {
    color: var(--primary-color);
    font-weight: bold;
}

.sales-methodology {
    padding: 80px 0;
}

.sales-methodology h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.methodology-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.client-success-stories {
    padding: 80px 0;
    background: var(--light-shade);
}

.client-success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.success-story {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.story-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-period {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-details p {
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.sales-credentials {
    padding: 80px 0;
}

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

.credentials-text h2 {
    margin-bottom: 1.5rem;
}

.credentials-list {
    margin-top: 2rem;
    display: grid;
    gap: 20px;
}

.credential-item {
    background: var(--light-shade);
    padding: 20px;
    border-radius: 8px;
}

.credential-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.credentials-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.revenue-results {
    padding: 80px 0;
    background: var(--light-shade);
}

.revenue-results h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.result-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.result-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.result-description {
    color: var(--text-color);
    font-size: 1rem;
}

.results-note {
    background: rgba(114, 9, 183, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.results-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.thankyou-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-shade) 0%, var(--white) 100%);
    text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.thankyou-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

.thankyou-details {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-align: left;
}

.thankyou-details h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

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

.thankyou-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-align: left;
}

.thankyou-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.interim-suggestions {
    display: grid;
    gap: 20px;
}

.suggestion-item {
    padding: 20px;
    background: var(--light-shade);
    border-radius: 8px;
}

.suggestion-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-reminder {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-align: left;
}

.contact-reminder h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-reminder p {
    text-align: center;
    margin-bottom: 2rem;
}

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

.contact-option {
    text-align: center;
    padding: 20px;
    background: var(--light-shade);
    border-radius: 8px;
}

.contact-option h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.thankyou-cta p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.thankyou-cta .cta-button {
    margin: 0 10px 10px 0;
}

@media screen and (max-width: 768px) {
    .about-hero-content,
    .philosophy-content,
    .methodology-content,
    .credentials-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .story-metrics {
        flex-direction: column;
        gap: 15px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .thankyou-hero {
        padding: 80px 0;
    }

    .thankyou-details,
    .thankyou-info,
    .contact-reminder {
        padding: 30px 20px;
    }
}