/* ===== BASE STYLES ===== */
:root {
    --primary-color: #4c6ef5;
    --primary-dark: #3b5bdb;
    --primary-light: #748ffc;
    --secondary-color: #ff922b;
    --secondary-dark: #f76707;
    --secondary-light: #ffc078;
    --text-color: #212529;
    --text-light: #495057;
    --text-lighter: #868e96;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #40c057;
    --danger-color: #fa5252;
    --warning-color: #fd7e14;
    --info-color: #228be6;
    
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    --border-radius: 0.375rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    /* Container widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
}

blockquote {
    border-left: 4px solid var(--primary-light);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--bg-light);
    font-style: italic;
}

blockquote p {
    margin-bottom: 0.5rem;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

figure {
    margin: 2rem 0;
}

figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: white;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.btn-secondary {
    color: white;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    color: white;
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    text-decoration: none;
}

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

.btn-outlined:hover {
    color: white;
    background-color: var(--primary-color);
    text-decoration: none;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 3rem;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 0.75rem;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem;
    text-decoration: none;
    position: relative;
}

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

nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.font-size-control {
    display: flex;
    align-items: center;
}

#increase-font {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

#increase-font:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

#increase-font svg {
    fill: currentColor;
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(76, 110, 245, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== RECENT POSTS SECTION ===== */
.recent-posts {
    padding: 5rem 0;
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3, .post-content h4 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    line-height: 1.3;
}

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

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.testimonial-author p {
    color: var(--text-lighter);
    font-style: normal;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
    background-color: #212529;
    color: white;
    padding: 4rem 0 1rem;
}

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

.footer-logo img {
    height: 3rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links h3, .footer-legal h3, .footer-contact h3, .footer-social h3 {
    color: white;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
    text-decoration: none;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== BLOG PAGE ===== */
.blog-content {
    padding: 4rem 0;
}

.blog-post {
    margin-bottom: 3rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.date, .category, .post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== BLOG POST SINGLE ===== */
.blog-post-single {
    padding: 4rem 0;
}

.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.post-header h1 {
    margin-bottom: 1rem;
}

.featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.post-content h2 {
    margin-top: 2.5rem;
}

.post-content h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.post-content .post-image {
    margin: 2rem 0;
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-caption {
    text-align: center;
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.author-box {
    display: flex;
    gap: 1.5rem;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-primary);
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.post-navigation {
    margin: 4rem 0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.prev-post, .next-post, .back-to-blog {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.prev-post:hover, .next-post:hover, .back-to-blog:hover {
    background-color: var(--primary-light);
    color: white;
    text-decoration: none;
}

.related-posts {
    margin-top: 4rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-posts .post-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe h2 {
    margin-bottom: 1rem;
}

.subscribe p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.subscribe-form {
    display: flex;
    gap: 1rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-mission {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

.mission-content h2 {
    margin-bottom: 3rem;
}

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

.mission-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(76, 110, 245, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.25rem;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-member p:nth-of-type(2) {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

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

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(76, 110, 245, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

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

.social-connect {
    margin-top: 2.5rem;
}

.social-connect h3 {
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-check input {
    margin-top: 0.25rem;
}

.form-check label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.map-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-lighter);
}

.modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(64, 192, 87, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--success-color);
}

.modal h2 {
    margin-bottom: 1rem;
}

.modal p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cookie-policy-link {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    header .container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .font-size-control {
        margin-top: 1rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .features, .recent-posts, .testimonials, .about-story, .about-mission, .team-section, .contact-section {
        padding: 3rem 0;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.larger-font {
    font-size: 1.15rem;
}

.larger-font h1 {
    font-size: 2.75rem;
}

.larger-font h2 {
    font-size: 2.25rem;
}

.larger-font h3 {
    font-size: 2rem;
}

.larger-font h4 {
    font-size: 1.75rem;
}

.larger-font h5 {
    font-size: 1.5rem;
}

.larger-font h6 {
    font-size: 1.25rem;
}
