@media screen and (max-width: 500px) {
    .site-name {
        font-size: 28px !important;
    }

    .site-title {
        font-size: 13px !important;
    }

    .site-tagline {
        font-size: 14px !important;
    }

    .profile-img {
        margin: auto;
    }

    .about, .services-why {
        text-align: center;
    }

    .services-why {
        margin-right: auto;
        font-size: 14px;
    }

    .section-container {
        padding: 0 !important;
    }

    .column .left {
        margin-right: 20px;
    }

    .column h2 {
        font-size: 0.9rem;
    }

    .column ul {
        padding-left: 8px;
    }

    .column li {
        list-style-type: none;
    }

    .column .right {
        margin-right: 12px;
    }

    .column .right h2 {
        margin-top: 15px;
        font-size: 0.8rem;
    }

    footer h2 {
        font-size: 24px !important;
    }

    footer p {
        font-size: 12px !important;
    }
}

body {
font-family: "Lora", serif;
background-color: #f4f4f4;
margin: 0;
padding: 0px 20px;
color: #333;
font-size: 15px;
}

.site-header {
    padding: 60px 40px 40px 40px;
    text-align: center;
    }
    
    .container-header {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 0.5px, solid, #777;
    box-shadow: 2px 2px 10px #666;
    background-color: #f4f4f4;
    font-family: "Cormorant Garamond", serif;
    }
    
    .site-name {
    font-size: 38px;
    font-weight: 700;
    font-family: "Libre Baskerville", serif;
    color: #1c1c1c;
    margin-top: 40px;
    margin-bottom: 0px;
    }

    
    .site-title {
    font-size: 19px;
    font-weight: 600;
    color: #444;
    margin-bottom: 0px;
    }
    
    .site-tagline {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    }

.container {
max-width: 800px;
background: white;
margin: auto;
padding: 40px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1 {
text-align: center;
margin-bottom: 40px;
}

.profile {
display: flex;
align-items: flex-start;
gap: 30px;
flex-wrap: wrap;
}

.profile-img {
margin-top: 35px;
width: 200px;
border-radius: 8px;
}

.about {
flex: 1;
padding-bottom: 24px;
}

.section {
margin-top: 40px;
}

ul {
list-style-type: disc;
padding-left: 20px;
}

a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 20px;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
    }
    
    /* Each Column */
    .column {
    flex: 1 1 45%;
    margin: 20px 0;
    }
    
    h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
    }
    
    ul {
    padding-left: 20px;
    }
    
    ul li {
    margin-bottom: 12px;
    }
    
    /* CTA Section */
    .cta {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
    }
    
    .cta h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    }
    
    .cta p {
    margin: 10px 0;
    }
    
    .contact-info p {
    margin: 8px 0;
    }
    
    /* CTA Button */
    .cta-button {
    display: inline-block;
    background-color: #003366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    }
    
    .cta-button:hover {
    background-color: #002244;
    }
    
    /* Footer */
    footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    font-family: "Cormorant Garamond", serif;
    }

    footer h2 {
        font-size: 32px;
        font-weight: 700;
    }
    
    footer p {
    margin: 5px 0;
    font-size: 18px;
    }
    
    