﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
}

.site-title {
    font-size: 2rem;
    color: #000;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.tagline {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.phone {
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
    font-weight: 400;
}

    .phone:hover {
        color: #1e3a8a;
    }

/* Main Content Styles */
.hero-section {
    display: flex;
    width: 100%;
}

.logo-side {
    flex: 1;
    display: flex;
}

.logo {
    width: 100%;
    display: block;
}

.content-side {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f5f5;
}

.main-heading {
    font-size: 4.5rem;
    color: #1e3a8a;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    letter-spacing: -1px;
    font-family: 'Raleway', sans-serif;
}

.contact-info {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
}

    .contact-info p {
        margin-bottom: 10px;
    }

    .contact-info a {
        color: #1e3a8a;
        text-decoration: none;
        font-weight: 400;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #1e3a8a;
    color: #fff;
    border: none;
}

    .btn-primary:hover {
        background-color: #2952a3;
    }

.btn-secondary {
    background-color: #fff;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

    .btn-secondary:hover {
        background-color: #f0f0f0;
    }

/* Location Section */
#location {
    margin: 20px auto 60px;
    padding: 40px 20px;
    text-align: center;
}

    #location h2 {
        font-size: 2rem;
        color: #1e3a8a;
        font-weight: 700;
        margin-bottom: 20px;
    }

        #location h2::before {
            content: "📍";
            color: #dc2626;
            margin-right: 10px;
        }

    #location address {
        font-style: normal;
        line-height: 1.8;
        color: #333;
        display: inline-block;
        text-align: left;
        margin-bottom: 30px;
    }

    #location p {
        color: #666;
        line-height: 1.6;
    }

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 30px 20px;
    text-align: center;
    color: #666;
    margin-top: 40px;
}

    .footer p {
        margin: 0;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 3.5rem;
    }

    .content-side {
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .content-side {
        padding: 40px 30px;
    }

    .main-heading {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .contact-info {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0;
    }

    .header {
        padding: 20px 15px;
    }

    .site-title {
        font-size: 1.3rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .logo-side {
        min-height: 300px;
    }

    .content-side {
        padding: 30px 20px;
    }
}
