* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5aa0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.cta-button {
    background: #2c5aa0;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e3d6f;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 150px 20px 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e55a2b;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c5aa0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Contact Info */
.contact-info {
    padding: 60px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #2c5aa0;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 120px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Detail */
.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-detail-card h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* About Content */
.about-content {
    padding: 80px 20px;
}

.about-text h2 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
}

.about-text ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

/* Contact Content */
.contact-content {
    padding: 80px 20px;
}

.contact-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.phone-link {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
}

/* CTA Section */
.cta-section {
    background: #2c5aa0;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero {
        padding: 100px 20px 40px;
    }
}
/* Logo in Navigation */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 40px;
    width: auto;
}

/* Hero Storefront Image */
.hero-image {
    margin-bottom: 2rem;
    text-align: center;
}

.storefront-image {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid white;
}

/* About Page Image */
.about-image {
    float: right;
    margin: 0 0 2rem 2rem;
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}