/* Minimal CSS - 1.2KB (compressed) */
:root {
    --primary: #1a4d8f;
    --secondary: #ff9900;
    --text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.main-header {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
}

.contact-header {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.responsive-img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.content-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-list {
    columns: 2;
    list-style: none;
    margin: 1rem 0;
}

.services-list li {
    padding: 0.5rem 0;
}

.cta-button {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: block;
    margin: 2rem auto;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.main-footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .services-list {
        columns: 1;
    }
    
    .cta-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;
        z-index: 100;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
}