/* Reset & Basis Stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #303030;
    font-size: 14px;
    line-height: 1.6;
}

/* Header */
.site-header {
    width: 100%;
    background-color: #fff;
    padding: 20px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}

.logo-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: scale-down;
}

/* Topbar */
.hh-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1a1a1a;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
}

.hh-flagtimer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hh-flag {
    width: 24px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
}

.hh-timer-box {
    background-color: #D32F2F;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

#hh-timer {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.hh-midnight {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.hh-right {
    display: flex;
    gap: 20px;
}

.hh-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hh-item img {
    width: 18px;
    height: 18px;
}

.hh-item p {
    margin: 0;
    font-size: 12px;
    color: #fff;
}

/* Hoofd Sectie */
.main-section {
    max-width: 1170px;
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Section Row */
.section-row {
    display: flex;
    gap: 20px;
    color: #303030;
    font-size: 14px;
}

/* Row Columns */
.row-column {
    display: flex;
    flex-direction: column;
}

.product-images {
    width: 50%;
}

.product-info {
    width: 50%;
}

/* Image Slider */
.image-slider {
    position: relative;
    width: 100%;
}

.is-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.image-resize.img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-resize.img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    user-select: none;
    transition: all 0.3s ease;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 182, 122, 0.9);
    color: white;
}

/* Thumbnails */
.is-thumbs-wrapper {
    width: 100%;
    overflow-x: auto;
}

.is-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.is-thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.is-thumbnail:hover {
    border-color: #00B67A;
}

.is-thumbnail.selected {
    border-color: #00B67A;
}

.is-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rating Container */
.rating-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.stars-icon {
    width: 120px;
    height: auto;
}

.rating-text {
    font-size: 18px;
    color: #303030;
    line-height: 1.1;
}

/* Product Titel */
.product-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 10px 0;
    padding: 0;
}

.product-title strong {
    font-weight: 700;
}

/* Getuigenis */
.testimonial {
    font-size: 18px;
    text-align: left;
    font-style: italic;
    line-height: 1.2;
    margin: 5px 0 10px 0;
    color: #303030;
}

/* Prijs Rij */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 6px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.compare-price {
    color: #888;
    font-size: 24px;
    text-decoration: line-through;
}

.current-price {
    color: #D32F2F;
    font-size: 28px;
    font-weight: 700;
}

.clearance-badge {
    background-color: #00B67A;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Voorraad Box */
.usp-stock-box {
    margin-top: 12px;
}

.usp-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 3px 0;
}

.usp-text {
    font-size: 16px;
    font-weight: normal;
    color: #1D2A3C;
    margin: 0;
    line-height: 1.3;
}

.pulse-icon {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D32F2F;
    flex-shrink: 0;
    margin-left: 5px;
    animation: pulse-effect 2.5s infinite ease-in-out;
}

@keyframes pulse-effect {
    0% {
        transform: scale(0.95);
        box-shadow: rgba(211, 47, 47, 0.5) 0px 0px;
    }
    70% {
        transform: scale(1);
        box-shadow: rgba(211, 47, 47, 0) 0px 0px 0px 6px;
    }
    100% {
        transform: scale(0.95);
        box-shadow: rgba(211, 47, 47, 0) 0px 0px;
    }
}

/* Aankoop Opties */
.purchase-options {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 480px;
    margin: 20px auto 25px;
}

.add-to-cart-btn {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 0;
    background-color: #111;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
    background-color: #333;
}

.purchase-title {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    color: #111;
    margin-bottom: 18px;
    text-align: center;
}

.buy-option {
    margin-bottom: 12px;
}

.buy-option-label {
    display: flex;
    align-items: center;
    border: 1px solid #111;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    background-color: #fff;
    width: 100%;
}

.buy-option-label:hover {
    border-color: #00b67a;
}

.buy-option-label input[type="radio"] {
    accent-color: #00b67a;
    margin-right: 14px;
    transform: scale(1.3);
    flex-shrink: 0;
}

.buy-option-label input[type="radio"]:checked + .buy-option-content,
.buy-option-label:has(input[type="radio"]:checked) {
    background-color: #f3f3f3;
    border-color: #00b67a;
}

.buy-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.buy-text {
    font-size: 18px;
    color: #111;
    font-weight: 500;
}

.buy-price {
    font-size: 20px;
    color: #111;
    font-weight: 700;
}

.most-popular {
    position: absolute;
    top: -12px;
    right: 14px;
    background: #00b67a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Betaal Iconen */
.payment-icons {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: scale-down;
}

/* Verzendings Box */
.hh-shipping-box {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    padding: 16px 20px;
    max-width: 420px;
    margin: 20px auto;
    color: #000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hh-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.hh-line p {
    margin: 0;
}

.hh-icon {
    width: 85px;
    height: auto;
}

.hh-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00B67A;
    animation: fade 1.8s ease-in-out infinite;
}

@keyframes fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hh-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.hh-divider {
    border: none;
    border-top: 1px solid #e9e9e9;
    margin: 10px 0;
}

/* Garantie Box */
.garantie-row {
    margin-top: 30px;
    width: 100%;
}

.riskfree-box {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    padding: 28px 36px;
    max-width: 950px;
    margin: 10px auto;
    color: #000;
}

.riskfree-icon {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    margin-right: 24px;
}

.riskfree-content {
    flex: 1;
}

.riskfree-content h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.riskfree-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #111;
    font-weight: 400;
}

/* Tablet Responsive */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .main-section {
        padding: 32px 16px;
    }
    
    .product-images,
    .product-info {
        width: 100%;
    }
    
    .section-row {
        flex-direction: column;
    }
    
    .stars-icon {
        width: 100px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .testimonial {
        font-size: 16px;
    }
}

/* Mobile Responsive */
@media only screen and (max-width: 600px) {
    .main-section {
        padding: 10px 16px;
        border-radius: 16px;
    }
    
    .section-row {
        flex-direction: column;
    }
    
    .product-images,
    .product-info {
        width: 100%;
    }
    
    .stars-icon {
        width: 116px;
        height: 20px;
    }
    
    .rating-container {
        justify-content: center;
    }
    
    .rating-text {
        font-size: 14px;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .testimonial {
        font-size: 14px;
        font-style: italic;
        text-align: center;
    }
    
    .compare-price {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 24px;
    }
    
    .price-row {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .purchase-title {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .buy-option-label {
        padding: 14px 16px;
    }
    
    .buy-text {
        font-size: 16px;
    }
    
    .buy-price {
        font-size: 18px;
    }
    
    .add-to-cart-btn {
        font-size: 20px;
        padding: 20px 0;
    }
    
    .cards-img {
        width: 364px;
        height: 37px;
    }
    
    .hh-shipping-box {
        padding: 12px 14px;
    }
    
    .hh-line {
        font-size: 14px;
        flex-wrap: wrap;
    }
    
    .hh-flag {
        width: 22px;
        height: 15px;
    }
    
    .hh-icon {
        width: 70px;
    }
    
    .riskfree-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }
    
    .riskfree-icon {
        margin: 0 0 4px 0;
        width: 70px;
    }
    
    .riskfree-content {
        max-width: 90%;
    }
    
    .riskfree-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .riskfree-content p {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* Nieuwe Secties Stijlen */

/* Productbeschrijving Sectie */
.description-section {
    max-width: 1170px;
    width: 100%;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 32px;
    padding: 40px 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.description-container {
    width: 100%;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
}

.description-content {
    width: 100%;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 182, 122, 0.2);
}

.feature-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 5px solid #ffc107;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.warning-title {
    font-size: 22px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 12px;
}

.warning-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #856404;
}

.instructions-box {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 5px solid #17a2b8;
    padding: 25px 30px;
    border-radius: 12px;
}

.instructions-title {
    font-size: 22px;
    font-weight: 700;
    color: #0c5460;
    margin-bottom: 12px;
}

.instructions-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #0c5460;
}

/* Section Banners */
.section-banner {
    width: 100%;
    margin: 30px auto;
    max-width: 1464px;
}

.banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* UNSERE VERSPRECHEN Sectie */
.promises-section {
    max-width: 1170px;
    width: 100%;
    margin: 40px auto;
    background: linear-gradient(135deg, #0068A3 0%, #00447A 100%);
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 4px 16px rgba(0, 104, 163, 0.3);
}

.promises-container {
    width: 100%;
}

.promises-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.flag-emoji {
    font-size: 48px;
}

.promises-header .section-title {
    color: #fff;
    margin: 0;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.promise-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.promise-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.promise-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.promise-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* FAQ Sectie */
.faq-section {
    max-width: 1170px;
    width: 100%;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 32px;
    padding: 50px 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-container {
    width: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #0068A3 0%, #00447A 100%);
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.faq-answer {
    padding: 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.faq-answer strong {
    color: #0068A3;
    font-weight: 700;
}

/* Reviews Sectie */
.reviews-section {
    max-width: 1170px;
    width: 100%;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reviews-container {
    width: 100%;
}

/* Trustpilot Header */
.trustpilot-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.trustpilot-badge {
    width: 100%;
    max-width: 349px;
    height: auto;
    object-fit: scale-down;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 20px 0;
    margin: 10px 0;
}

.review-left {
    width: 50px;
    min-width: 50px;
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

.review-right {
    flex: 1;
    padding-right: 10px;
}

.review-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tps-badge {
    width: 80px;
    min-width: 80px;
    height: auto;
    object-fit: scale-down;
}

.review-author {
    font-size: 15px;
    margin: 0;
    line-height: 1.1;
}

.review-text {
    font-size: 12px;
    text-align: left;
    line-height: 1.4;
    margin: 0 0 0 0;
    padding: 10px 10px 0 0;
    color: #333;
}

.review-product-img {
    margin: 20px 0;
    width: 350px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles voor Nieuwe Secties */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .description-section,
    .promises-section,
    .faq-section,
    .reviews-section {
        padding: 32px 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .promises-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .review-product-img {
        width: 300px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .description-section,
    .promises-section,
    .faq-section,
    .reviews-section {
        padding: 20px 16px;
        border-radius: 16px;
        margin: 20px auto;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 15px;
    }
    
    .warning-box,
    .instructions-box {
        padding: 20px;
    }
    
    .warning-title,
    .instructions-title {
        font-size: 18px;
    }
    
    .warning-box p,
    .instructions-box p {
        font-size: 15px;
    }
    
    .promises-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .flag-emoji {
        font-size: 36px;
    }
    
    .promises-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promise-card {
        padding: 25px 20px;
    }
    
    .promise-icon {
        font-size: 40px;
    }
    
    .promise-card h3 {
        font-size: 16px;
    }
    
    .promise-card p {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .faq-icon {
        font-size: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    /* Reviews Mobile */
    .trustpilot-badge {
        max-width: 100%;
    }
    
    .review-item {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }
    
    .review-left {
        margin-bottom: 10px;
    }
    
    .review-right {
        text-align: center;
    }
    
    .review-author-row {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .review-author {
        font-size: 13px;
    }
    
    .review-text {
        font-size: 13px;
        padding: 10px 0 0 0;
    }
    
    .review-product-img {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 20px auto;
        display: block;
    }
    
    /* Topbar Mobile */
    .hh-topbar {
        flex-direction: column;
        align-items: center;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .hh-midnight {
        width: 100%;
        order: -1;
        font-size: 14px;
        text-align: center;
    }
    
    .hh-flagtimer,
    .hh-right {
        gap: 8px;
        justify-content: center;
    }
    
    .hh-timer-box {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .hh-item p {
        font-size: 10px;
    }
    
    .hh-item img {
        width: 16px;
        height: 16px;
    }
}

/* Footer Sectie */
.footer-section {
    width: 100%;
    border-top: 1px solid #E9E9E9;
    margin: 40px 0 0 0;
    padding: 40px 16px 20px 16px;
    background-color: #F5F6F7;
}

.footer-container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.footer-header {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 30px 0;
    padding: 5px;
}

.footer-header h3 {
    margin: 0;
    color: #303030;
}

.footer-content {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0;
    padding: 0;
}

.footer-column {
    width: 50%;
}

.contact-info {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin: 0 40px;
    padding: 10px;
}

.contact-info p {
    margin: 0;
    color: #303030;
}

.footer-links {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin: 0 40px;
    padding: 10px;
}

.footer-links p {
    margin: 0;
    color: #303030;
}

.footer-copyright {
    font-size: 18px;
    text-align: center;
    line-height: 1;
    margin: 30px 0 0 0;
    padding: 10px 0;
}

.footer-copyright p {
    margin: 0;
    color: #888888;
}

/* Footer Responsive */
@media only screen and (max-width: 600px) {
    .footer-section {
        padding: 20px 16px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .contact-info,
    .footer-links {
        margin: 0;
        padding: 10px 0;
    }
    
    .contact-info {
        font-size: 14px;
        text-align: left;
    }
    
    .footer-links {
        font-size: 12px;
        text-align: left;
    }
    
    .footer-copyright {
        font-size: 10px;
        margin-top: 20px;
    }
}

