/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(to bottom, #0c0c34, #1a1a50);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background: linear-gradient(to right, #1a1a50, #262655);
    padding: 2.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 65px;
}

.header-text {
    text-align: left;
}

.subtitle {
    color: #d1d1e0;
    font-size: 1.2rem;
}

/* Main content */
main {
    padding: 3rem 1rem;
}

section {
    margin-bottom: 4rem;
}

/* Section headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.section-header i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

/* Cards */
.card {
    background-color: #262655;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.card-dark {
    background-color: #191947;
}

/* Grid system */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

/* Products */
.product-card {
    background-color: #262655;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Distribution List */
.distribution-list {
    list-style: none;
    margin: 1rem 0;
}

.distribution-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.distribution-list li:before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #FFD700;
}

/* Business details */
.details-card {
    background-color: #262655;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

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

.detail-header i {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.detail-list {
    margin-left: 2rem;
}

.detail-item {
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
}

.detail-label {
    width: 8rem;
    color: #d1d1e0;
    margin-right: 1rem;
}

/* Contact section */
.contact-section {
    margin-bottom: 0;
}

.contact-category {
    margin-bottom: 1.5rem;
}

.contact-header {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #FFD700;
    margin-right: 0.75rem;
    font-size: 1rem;
    padding-top: 0.2rem;
}

.contact-item-content p:first-child {
    font-weight: 600;
}

.contact-item-content p:last-child {
    color: #d1d1e0;
}

/* Footer */
footer {
    background: linear-gradient(to right, #1a1a50, #262655);
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 2rem;
}

.copyright {
    color: #d1d1e0;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    header {
        padding: 2rem;
        text-align: left;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .section-header i {
        font-size: 1.8rem;
    }
}