/* Page Hero Section */
.page-hero {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center; /* Keep this for background image centering if needed */
}

.page-hero .container {
    text-align: left; /* Align text to the left */
}

.page-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Page Content Layout */
.page-content {
    padding: 80px 0;
}

.layout-sidebar-left {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
}

.main-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.sidebar-widget {
    background: var(--very-light-blue);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
}

.sidebar-widget ul li a {
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

/* Sidebar Widget Button Specific Styles */
.sidebar-widget .btn {
    display: block; /* Make the button take full width of its container */
    width: 100%; /* Ensure it takes full width */
    padding: 10px 15px; /* Adjust padding to fit text better */
    font-size: 0.8rem; /* Slightly smaller font size */
    text-align: center; /* Center the text */
    white-space: normal; /* Allow text to wrap if necessary, but with adjusted padding/font it should fit */
    box-sizing: border-box; /* Include padding in the element's total width and height */
}


/* Contact Page Specific Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-box {
    background-color: #f4f8ff;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-info-box li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-box i {
    color: var(--primary-color);
    margin-top: 5px;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.contact-form-box h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.contact-form-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .layout-sidebar-left {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }
    .contact-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
}
