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

body {
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.home-page {
    background-image: url('images/coloradoBG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.navbar {
    background-color: #d2b48c;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: #333;
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b6914;
}

.nav-link.active {
    color: #8b6914;
    font-weight: 600;
}

.main-content {
    flex: 1;
    padding: 3rem 0;
}

.main-content .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.home-text-box {
    background-color: #f5f0e8;
    padding: 3rem;
    border-radius: 10px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-text-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.home-text-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.about-section {
    background-color: #e6d5b8;
    padding: 3rem;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-photo {
    flex-shrink: 0;
    width: 250px;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

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

.how-to-begin-section {
    background-color: #f0e6d2;
    padding: 3rem;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.how-to-begin-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.how-to-begin-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.contact-link {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: #ffa500;
    text-decoration: underline;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.footer {
    background-color: #d2b48c;
    color: #333;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: normal;
}

.footer-contact {
    margin: 0.25rem 0;
}

.footer-link {
    color: #d2691e;
    text-decoration: underline;
    font-size: 1.1rem;
}

.footer-link:hover {
    color: #b85a1a;
}

.footer-address {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0.25rem 0;
}

.footer-copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #2c3e50;
}

.expertise-section {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

.expertise-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: left;
}

.expertise-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.specialty-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.specialty-column {
    flex: 1;
}

.specialty-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialty-list li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.specialty-list li:last-child {
    margin-bottom: 0;
}

.specialty-list li strong em {
    font-weight: bold;
    font-style: italic;
    display: block;
    margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-photo {
        width: 200px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .how-to-begin-section h2 {
        font-size: 2rem;
    }

    .specialty-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-section h2 {
        font-size: 1.75rem;
    }
}

.forms-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.forms-list li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-left: 4px solid #d2b48c;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.forms-list li:hover {
    background-color: #f0f0f0;
}

.forms-list li:last-child {
    margin-bottom: 0;
}

.form-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    width: 100%;
}

.form-link strong {
    font-weight: 600;
    color: #2c3e50;
}

.form-link:hover strong {
    color: #8b6914;
}

.form-format {
    color: #666;
    font-size: 0.9rem;
    font-weight: normal;
}

@media (max-width: 768px) {
    .form-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

.forms-list-simple {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.forms-list-simple li {
    margin-bottom: 0.75rem;
}

.forms-list-simple li:last-child {
    margin-bottom: 0;
}

.form-link-simple {
    color: #d2691e;
    text-decoration: underline;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.form-link-simple:hover {
    color: #b85a1a;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.about-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
}

.about-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

