* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    background: #ffffff;
    color: #444444;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

/* Title Section */
.title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.page-title {
    font-size: 30px;
    color: #255289;
    font-weight: 600;
    margin: 0;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-logos img:last-child {
    height: 65px;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 25px;
    margin: 0 0 15px 0;
    align-items: flex-start;
}

.carousel {
    flex: 0 0 380px;
    position: relative;
}

.carousel img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-controls {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.carousel-controls .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 2px solid #255289;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-controls .dot.active {
    background: #255289;
    transform: scale(1.2);
}

.carousel-controls .dot:hover {
    background: #35b558;
    border-color: #35b558;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-content > p {
    margin-bottom: 15px;
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
}

.action-buttons {
    margin: 0 0 20px 0;
}

.action-buttons button {
    padding: 10px 28px;
    background: #35b558;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(53,181,88,0.3);
}

.action-buttons button:hover {
    background: #2d9a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(53,181,88,0.4);
}

.product-info {
    flex: 1;
}

.product-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #255289;
    border-bottom: 3px solid #35b558;
    padding-bottom: 8px;
    font-weight: 600;
}

.product-info ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.product-info ul li {
    margin-bottom: 7px;
    color: #444444;
    font-size: 15px;
    line-height: 1.5;
}

/* Sections */
section {
    margin: 20px 0;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #255289;
    border-bottom: 3px solid #35b558;
    padding-bottom: 8px;
    font-weight: 600;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #255289;
    font-weight: 600;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

table th,
table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

table th {
    background: #255289;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table tbody tr {
    transition: background 0.2s ease;
}

table tbody tr:hover {
    background: #f8f9fa;
}

table tbody tr:last-child td {
    border-bottom: none;
}

table td {
    color: #444444;
    font-size: 13px;
}

.add-to-cart-btn {
    padding: 5px 15px;
    background: #35b558;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #2d9a4a;
    transform: translateY(-1px);
}

/* Related Products */
.related-products {
    margin: 30px 0;
    background: #f8f9fa;
    padding: 25px 15px;
    border-radius: 8px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.related-item img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 5px;
}

.related-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #255289;
}

.related-item p {
    font-size: 13px;
    margin-bottom: 12px;
    text-align: left;
    color: #444444;
    line-height: 1.5;
}

.related-item button {
    padding: 8px 18px;
    background: #255289;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-item button:hover {
    background: #1d4170;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-section {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .carousel {
        flex: 1;
        max-width: 100%;
    }
    
    table {
        font-size: 11px;
    }
    
    table th,
    table td {
        padding: 7px 8px;
    }
}