:root {
    --debug: true;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

/* Add this to verify CSS loading */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: #3498db;
    z-index: 9999;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
}

.company-logo {
    max-width: 300px;
    height: auto;
}

h2 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.tagline {
    text-align: center;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 40px;
}

.intro {
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: transform 0.2s;
    background-color: white;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item i {
    color: #3498db;
}

.service-item p {
    color: #555;
}

.contact-info {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.contact-message {
    color: #555;
    margin-bottom: 20px;
}

.email {
    color: #3498db;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
        max-width: 100%;
    }

    .content {
        padding: 30px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .container {
        padding: 1rem;
    }

    .content {
        padding: 20px;
        border-radius: 0;
        box-shadow: none;
    }
    
    .company-logo {
        max-width: 200px;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .service-item {
        padding: 15px;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 30px 0;
    }
    
    .contact-message {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .email {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 15px;
    }

    .company-logo {
        max-width: 150px;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .services {
        gap: 15px;
    }

    .service-item {
        padding: 12px;
    }

    .service-item h3 {
        font-size: 1rem;
        gap: 8px;
    }

    .service-item p {
        font-size: 0.9rem;
    }
} 