* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}
    
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #c0c0c0;
    border-radius: 12px;
    margin: 10px;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card h2 {
    color: #000;
    text-align: center;
    font-size: 16px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}

.cta {
    text-align: center;
    margin: 3rem 0;
}

.cta a {
    background-color: #f95738;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta a:hover {
    background-color: #d9462c;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #0D3B66;
    color: #fff;
    margin-top: 3rem;
}
    

/* Extra Small Devices (phones) */
@media (max-width: 480px) {
    header {
        width: 100%;
        height: 180px;
        color: #fff;
        text-align: center;
    }
    
        .logo {
            width: 100%;
            height: 120px;
        }
        
            .logo-img {
                height: 80px;
                width: auto;
                margin: 20px auto 10px auto;
            }
        
        .quote-container {
            height: 60px;
            width: 100%;
            text-align: right;
            padding: 10px 15px 0 0;
        } 
        
        #quote {
            font-size: 13px;        
        }
        
        #author {
            font-size: 10px;
        }
}

/* Small Devices (tablets in portrait) */
@media (min-width: 481px) and (max-width: 768px) {
    
}

/* Medium Devices (tablets in landscape, small laptops) */
@media (min-width: 769px) and (max-width: 1024px) {
   
}

/* Large Devices (desktops, large laptops) */
@media (min-width: 1025px) and (max-width: 1440px) {
    
    
    
    
    
    
    
}

/* Extra Large Devices (large desktops, TVs) */
@media (min-width: 1441px) {
    
}