/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #0f172a;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background-color: #d97706;
    margin: 0 auto 2rem;
}

/* About Section */
.about-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 4rem 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: #d97706;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #64748b;
    line-height: 1.5;
}

.service-list {
    list-style: none;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-bullet {
    width: 8px;
    height: 8px;
    background-color: #d97706;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #d97706;
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.contact-title {
    color: #64748b;
    font-size: 0.875rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}

.contact-item i {
    color: #64748b;
    width: 1rem;
}

.contact-cta {
    text-align: center;
}

.cta-button {
    background-color: #d97706;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background-color: #b45309;
}

.cta-button i {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: #cbd5e1;
}

.footer-divider {
    height: 1px;
    background-color: #475569;
    margin: 1rem 0;
}

.footer-text {
    color: #94a3b8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .header-title {
        font-size: 3rem;
    }
    
    .header-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .header-title {
        font-size: 3.5rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header {
        background-color: transparent !important;
        color: black !important;
    }
    
    .footer {
        background-color: transparent !important;
        color: black !important;
    }
    
    .service-card,
    .contact-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}
