/* Layout Styles - Main layout CSS */
.product-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: #fff;
    flex-wrap: wrap;
}

.product-highlight .content {
    flex: 1 1 50%;
    max-width: 600px;
}

.product-highlight h2 {
    font-size: 2em;
    line-height: 1.4;
    color: #003a5d;
}

.product-highlight .highlight {
    color: #fcb316;
    font-weight: bold;
}

.product-highlight p {
    font-size: 1.1em;
    margin: 20px 0;
    color: #222;
}

.cta-button {
    display: inline-block;
    background-color: #343289;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}

.cta-button span {
    margin-left: 10px;
}

.image-area {
    position: relative;
    flex: 1 1 40%;
    text-align: center;
    padding: 20px;
}

.image-area .main-image {
    width: 100%;
    max-width: 700px;
    border: 5px solid #343289;
    box-sizing: border-box;
}

.image-area .badge {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
}

.image-area .logo-overlay {
    position: absolute;
    bottom: 10px;
    right: 40px;
    width: 100px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

footer {
    background-color: #fff;
    color: #333;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #d82334;
}

.footer-col h3 {
    color: #d82334;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-col p, .footer-col a {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    text-decoration: none;
}

.footer-col a:hover {
    color: #d82334;
}

.footer-col strong {
    font-weight: bold;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 22px;
    color: #d82334;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}