/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles with Arial font, all bold */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #84ACE0;
    font-weight: bold;
}

/* Header */
header {
    text-align: center;
    padding: 30px 20px;
    background-color: #091D38;
    color: #84ACE0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
    margin-bottom: 15px;
}

header .logo-image {
    max-width: 120px; /* Adjust based on your logo size */
    height: auto;
}

header h1 {
    font-size: 2.8em;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

header nav {
    margin: 15px 0;
}

header .nav-links {
    list-style: none;
}

header .nav-links li {
    display: inline;
    margin: 0 20px;
}

header .nav-links a {
    color: #84ACE0;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

header .nav-links a:hover {
    color: #720011;
}

header p {
    font-size: 1.3em;
    margin-top: 10px;
}

/* Home Page - Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #84ACE0;
    min-height: 70vh;
}

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

.hero-image {
    max-width: 350px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 10px;
    border: 3px solid #3A073F;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero p {
    font-size: 1.2em;
    color: #091D38;
    margin-bottom: 30px;
}

.hero p em {
    color: #3A073F;
}

/* Home Page - Overview Section */
.overview {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #091D38;
}

.overview-content {
    max-width: 700px;
    margin: 0 auto;
}

.overview h2 {
    font-size: 2em;
    color: #091D38;
    margin-bottom: 20px;
}

.overview p {
    font-size: 1.2em;
    color: #091D38;
    margin-bottom: 25px;
}

.overview .highlights {
    list-style: none;
    font-size: 1.2em;
}

.overview .highlights li {
    margin: 15px 0;
    color: #720011;
    position: relative;
    padding-left: 25px;
}

.overview .highlights li::before {
    content: "➤";
    color: #3A073F;
    position: absolute;
    left: 0;
}

.overview .highlights strong {
    color: #000000;
}

/* Home Page - Books Section */
.books {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.books-content {
    max-width: 900px;
    margin: 0 auto;
}

.books h2 {
    font-size: 2em;
    color: #091D38;
    margin-bottom: 30px;
}

.book-item {
    margin: 20px 0;
}

.book-item h3 {
    font-size: 1.5em;
    color: #3A073F;
    margin-bottom: 10px;
}

.book-item p {
    font-size: 1.1em;
    color: #091D38;
    margin-bottom: 15px;
}

/* Principles Page - Hero Section */
.principles-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #84ACE0;
    min-height: 50vh;
}

.principles-hero-content {
    text-align: center;
    max-width: 900px;
}

.principles-hero h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.principles-hero p {
    font-size: 1.2em;
    color: #091D38;
}

/* Principles Page - Principles Section */
.principles {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #091D38;
}

.principles-content {
    max-width: 900px;
    margin: 0 auto;
}

.principle-item {
    margin: 30px 0;
}

.principle-item h3 {
    font-size: 1.5em;
    color: #3A073F;
    margin-bottom: 15px;
}

.principle-item p {
    font-size: 1.1em;
    color: #091D38;
    margin-bottom: 10px;
}

.principle-item p em {
    color: #720011;
}

/* Framework Page - Hero Section */
.framework-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
   background: #84ACE0;
    min-height: 50vh;
}

.framework-hero-content {
    text-align: center;
    max-width: 900px;
}

.framework-hero h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.framework-hero p {
    font-size: 1.2em;
    color: #091D38;
}

/* Framework Page - Framework Section */
.framework {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #091D38;
}

.framework-content {
    max-width: 900px;
    margin: 0 auto;
}

.framework-intro, .framework-steps {
    margin: 30px 0;
}

.framework-intro h3, .framework-steps h3 {
    font-size: 1.5em;
    color: #3A073F;
    margin-bottom: 15px;
}

.framework-intro p, .framework-steps p {
    font-size: 1.1em;
    color: #091D38;
    margin-bottom: 10px;
}

.framework-intro p em, .framework-steps p em {
    color: #720011;
}

.framework-steps .steps-list {
    list-style: none;
    font-size: 1.1em;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 20px;
}

.framework-steps .steps-list li {
    margin: 15px 0;
    color: #720011;
    position: relative;
    padding-left: 25px;
}

.framework-steps .steps-list li::before {
    content: "➤";
    color: #3A073F;
    position: absolute;
    left: 0;
}

.framework-steps .steps-list strong {
    color: #000000;
}

/* About Page - Hero Section */
.about-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
   background: #84ACE0;
    min-height: 50vh;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
}

.about-hero h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-hero p {
    font-size: 1.2em;
    color: #091D38;
}

.about-hero p em {
    color: #3A073F;
}

/* About Page - About Section */
.about {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #091D38;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.bio, .inspiration, .personal {
    margin: 30px 0;
}

.bio h3, .inspiration h3, .personal h3 {
    font-size: 1.5em;
    color: #3A073F;
    margin-bottom: 15px;
}

.bio p, .inspiration p, .personal p {
    font-size: 1.1em;
    color: #091D38;
    margin-bottom: 10px;
}

.inspiration p em {
    color: #720011;
}

/* Contact Page - Hero Section */
.contact-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #84ACE0;
    min-height: 50vh;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
}

.contact-hero h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-hero p {
    font-size: 1.2em;
    color: #091D38;
}

/* Contact Page - Contact Section */
.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #091D38;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-details, .contact-form {
    margin: 30px 0;
}

.contact-details h3, .contact-form h3 {
    font-size: 1.5em;
    color: #3A073F;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 1.1em;
    color: #091D38;
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form label {
    font-size: 1.1em;
    color: #091D38;
    margin-bottom: 5px;
    text-align: left;
}

.contact-form input, .contact-form textarea {
    font-size: 1em;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #3A073F;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: #091D38;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: center;
}

.contact-form p {
    font-size: 1em;
    color: #091D38;
    margin-top: 10px;
}

.contact-form p em {
    color: #720011;
}

/* Buttons */
.cta-buttons .btn, .principles .cta .btn, .framework .cta .btn, .about .cta .btn, .contact .cta .btn, .overview .btn, .book-item .btn, .contact-form button {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-buttons .btn:hover, .principles .cta .btn:hover, .framework .cta .btn:hover, .about .cta .btn:hover, .contact .cta .btn:hover, .overview .btn:hover, .book-item .btn:hover, .contact-form button:hover {
    transform: translateY(-3px);
}

.btn.primary, .contact-form button {
    background-color: #720011;
    color: #84ACE0;
}

.btn.primary:hover, .contact-form button:hover {
    background-color: #3A073F;
}

.btn.secondary {
    background-color: #3A073F;
    color: #84ACE0;
}

.btn.secondary:hover {
    background-color: #720011;
}

/* Footer */
footer {
    background-color: #091D38;
    color: #000000;
    padding: 30px 20px;
    text-align: center;
    border-top: 4px solid #720011;
}

.footer-content .social, .footer-content .contact {
    margin: 15px 0;
    font-size: 1.1em;
}

.footer-content a {
    color: #84ACE0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #720011;
}

.footer-content p {
    font-size: 0.9em;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header .logo-image {
        max-width: 100px;
    }

    header .nav-links li {
        display: block;
        margin: 10px 0;
    }

    .hero, .principles-hero, .framework-hero, .about-hero, .contact-hero {
        padding: 40px 20px;
    }

    .hero-image {
        max-width: 250px;
    }

    .hero h2, .principles-hero h2, .framework-hero h2, .about-hero h2, .contact-hero h2, .overview h2, .books h2, .framework-intro h3, .framework-steps h3, .bio h3, .inspiration h3, .personal h3, .contact-details h3, .contact-form h3 {
        font-size: 1.6em;
    }

    .hero p, .principles-hero p, .overview p, .books p, .principle-item p, .framework-intro p, .framework-steps p, .framework-steps .steps-list, .bio p, .inspiration p, .personal p, .contact-details p, .contact-form p, .contact-form label, .contact-form input, .contact-form textarea {
        font-size: 1em;
    }

    .overview .highlights, .principle-item h3 {
        font-size: 1.3em;
    }

    .contact-form form {
        max-width: 100%;
        padding: 0 20px;
    }
}