.product-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.product-intro {
    margin-bottom: 40px;
    text-align: center;
}

.product-intro h2 {
    color: #0077b6;
    margin-bottom: 20px;
    font-size: 32px;
}

.product-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: #0077b6;
    margin-bottom: 10px;
    font-size: 20px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.product-list {
    margin: 30px 0;
    padding-left: 20px;
}

.product-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
}

.product-list li:before {
    content: "•";
    color: #0077b6;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.customization-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 50px;
}

.customization-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.customization-content h2 {
    color: #0077b6;
    margin-bottom: 20px;
    font-size: 32px;
}

.customization-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: #0077b6;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #005b8c;
}
