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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.logo .DCP-lab {
    font-size: 16px;
    font-weight: normal;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #666;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-icons span {
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23e0e0e0" width="1200" height="400"/><text x="600" y="200" text-anchor="middle" font-size="20" fill="%23666">Replace with actual store interior photo</text></svg>') center/cover;
    display: block;
}

/* Scrolling Banner */
.scrolling-banner {
    background-color: #ffdd00;
    height: 50px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.scrolling-text {
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    animation: scroll 20s linear infinite;
    position: absolute;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.main-content h1 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
    font-weight: normal;
}

.main-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #333;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
}

.service-item h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #333;
}

.service-illustration {
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 150"><rect fill="%23f0f0f0" width="200" height="150"/><text x="100" y="75" text-anchor="middle" font-size="12" fill="%23666">Service Icon</text></svg>') center/contain no-repeat;
    margin-bottom: 20px;
}

/* Page Navigation */
.page-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

.page-nav select {
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .main-content h1 {
        font-size: 20px;
    }
    
    .main-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Hidden pages content */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

/* Page-specific styles */
.page-template {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-template h1 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.page-template h2 {
    font-size: 24px;
    margin: 30px 0 20px 0;
    color: #333;
}

.page-template p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.placeholder-content {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    color: #666;
    font-style: italic;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.contact-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23e0e0e0" width="400" height="300"/><text x="200" y="150" text-anchor="middle" font-size="16" fill="%23666">About Us Image</text></svg>') center/cover;
    border-radius: 8px;
}

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

.product-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image {
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 200"><rect fill="%23f0f0f0" width="250" height="200"/><text x="125" y="100" text-anchor="middle" font-size="14" fill="%23666">Product Image</text></svg>') center/cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    margin-top: 10px;
}

.title {
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: -1px;
}

.info-section {
    text-align: center;
    margin-bottom: 60px;
}

.info-line {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

.info-paragraph {
    font-size: 1rem;
    color: #333;
    max-width: 800px;
    margin: 20px auto 0;
}

.pricing-tables {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    justify-content: center;
}

.pricing-table {
    min-width: 350px;
}

.table-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background: white;
}

th {
    background-color: #f8f9fa;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

td {
    padding: 12px 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.price-cell {
    text-align: right;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.delivery-table, .addons-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 50px;
    border: 1px solid #ddd;
    background: white;
}

.delivery-table th, .addons-table th {
    background-color: #f8f9fa;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #ddd;
    text-align: center;
}

.delivery-table td, .addons-table td {
    padding: 12px 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
    text-align: center;
}

.delivery-table td:first-child, .addons-table td:first-child {
    text-align: left;
}

@media (max-width: 900px) {
    .pricing-tables {
        flex-direction: column;
        gap: 40px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    body {
        padding: 40px 20px;
    }
}
