@import url("sppds25.css");
/* General Styling */
.unique-perks-section::after {
    content: "";
    display: table;
    clear: both;
}

.unique-perks-section {
    padding: 0px;
    background-color: #f5f5f5;
    width: 100%;
	margin: 0 auto;
}

.unique-perks-section h1, .unique-perks-section h2, .unique-perks-section h3 {
    font-family: 'Roboto', sans-serif;
    margin: 0px 0;
}

.unique-perks-section p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #666;
}

/* Large column at the top */
.unique-perks-section .large-column {
    width: 100%;
	/*height: 50%;*/
    padding: 60px 20px;
    background-image: url('../images/local driving school.png'); /* Add your background image URL */
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 8px;
    text-align: center;
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

.unique-perks-section .large-column h1, 
.unique-perks-section .large-column h2 {
    color: white;
}

/* Smaller columns underneath */
.unique-perks-section .row {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
}
.small-column{
	
	padding: 10px;
}

.unique-perks-section .small-column {
    width: 31%;
    /*padding: 20px;*/
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-perks-section .small-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.unique-perks-section .small-column h2, .unique-perks-section .small-column h3 {
    color: #333;
    font-size: 1.5em;
}

.unique-perks-section .small-column p {
    font-size: 1.1em;
    color: #777;
}

@media (max-width: 1024px) {
    .unique-perks-section .small-column {
        width: 48%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .unique-perks-section .large-column {
        padding: 40px 15px;
    }

    .unique-perks-section .small-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .unique-perks-section .row {
        flex-direction: column;
    }
}

.unique-perks-section .banner_map {
    padding: 0px;
    border-radius: 10px;
}


/* areas we cover */

/* Styles specific to the driving-locations-section */
.driving-locations-section {
    padding: 20px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 1200px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;*/
	 border-radius: 10px;
}

.driving-locations-section h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.driving-locations-section h2 {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

/* Responsive List Styles */
.driving-locations-section ul.responsive-list {
    list-style-type: none;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.driving-locations-section ul.responsive-list li {
    text-align: center;
}

.driving-locations-section ul.responsive-list li a {
    display: block;
    text-decoration: none;
    color: #151515;
    font-size: 1.1rem;
    padding: 10px;
   /* background-color: #e9f3ff;
	background: linear-gradient(to top, #B7D0EC, #DDE8F6);*/
    border-radius: 6px;
    transition: all 0.3s ease;
}

.driving-locations-section ul.responsive-list li a:hover {
    /*background-color: #A5C4E7;*/
    color: #151515;
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 600px) {
    .driving-locations-section h1 {
        font-size: 2rem;
    }

    .driving-locations-section h2 {
        font-size: 1.2rem;
    }

    .driving-locations-section ul.responsive-list li a {
        font-size: 1rem;
    }
}


