* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f9fa; /* Lighter, cleaner background */
    color: #34495e; /* Softer text color */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

section {
    padding: 60px 20px;
}

body > *:not(footer) {
    flex: 1;
}

footer {
    margin-top: auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50; /* New primary color: dark slate blue */
    color: white;
    padding: 15px 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.cart-icon {
    position: relative;
}

#cart-count {
    background: #c09f5c; /* New accent color: warm gold */
    color: white;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 50%;
    margin-left: 5px;
}


/* Products Page */
.products-page {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-header h1 {
    font-size: 28px;
}

.sort {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #f1f1f1;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.product-card a, .product-card a:visited {
    text-decoration: none;
    color: #333;
}

.product-card h3 {
    margin-top: 15px;
    font-size: 1.1em;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.qty-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.qty-controls button {
    padding: 6px 12px;
    border: none;
    background: #34495e; /* Secondary dark color */
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.qty {
    font-weight: bold;
    font-size: 16px;
}

.add-cart-btn {
    background: #c09f5c; /* New accent color */
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.add-cart-btn.added {
    background: #28a745;
}

.product-card.added {
    transform: scale(0.96);
    transition: 0.2s;
}

.products-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

#sortProducts{

padding:8px 12px;

border:1px solid #ccc;

border-radius:6px;

background:white;

cursor:pointer;

font-size:14px;

}

@media(max-width:768px){

.products-header{

flex-direction:column;

align-items:flex-start;

gap:10px;

}

}

/* Cart shake animation */
@keyframes cartShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

.cart-icon.shake {
    animation: cartShake 0.4s;
}

/* Product Detail Page */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-info {
    flex: 1;
    padding-left: 20px;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50; /* Darker heading color */
}

.product-info .price {
    font-size: 24px;
    font-weight: bold;
    color: #c09f5c; /* New accent color */
    margin-bottom: 20px;
}

.product-info .add-cart-btn {
    background: #c09f5c; /* New accent color */
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 15px;
    width: 100%;
}

.product-info .add-cart-btn:hover {
    background: #a8874a; /* Darker gold on hover */
}

.ask-pack-btn {
    background: #34495e; /* Secondary dark color */
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 15px;
    width: 100%;
}

.ask-pack-btn:hover {
    background: #2c3e50; /* Primary dark on hover */
}

.pack-price {
    margin-top: 20px;
}

.pack-price input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
}

@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }
    .product-info {
        padding-left: 0;
        padding-top: 20px;
    }
    .pack-options {
        flex-direction: column;
        gap: 15px;
    }
}

#cart-count {
    transition: 0.3s;
}

#cart-count.bump {
    transform: scale(1.3);
}

.product-info{
    max-width:450px;
}

.product-title{
    font-size:32px;
    margin-bottom:5px;
}

.product-subtitle{
    color:#777;
    margin-bottom:20px;
}

.price-display{
    font-size:30px;
    font-weight:bold;
    margin-bottom:25px;
}

.pack-title{
    margin-bottom:10px;
}

.pack-options{
    display:flex;
    gap:12px;
    margin-bottom:25px;
}

.pack-card{
    flex:1;
    border:2px solid #eee;
    padding:15px;
    border-radius:10px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
    position:relative;
}

.pack-card:hover{
    border-color:#c09f5c;
    transform:translateY(-3px);
}

.pack-card.active{
    border-color:#c09f5c;
    background:#fffaf0; /* Light gold background for active */
}

.save-badge{
    position:absolute;
    top:-8px;
    right:-8px;
    background:#c09f5c;
    color:white;
    font-size:12px;
    padding:4px 8px;
    border-radius:6px;
}

.add-cart-btn{
    width:100%;
    padding:14px;
    font-size:16px;
    background: #c09f5c; /* New accent color */
    border:none;
    color:white;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.add-cart-btn:hover{
    background: #a8874a; /* Darker gold on hover */
}

/* Product Hero */
.product-hero {
    /* Add your background image URL here */
    /* background-image: url('path/to/your/image.jpg'); */
    background-color: #2c3e50; /* New primary color */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.product-hero h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Home */
.home {
    padding: 80px 20px;
    text-align: center;
    background: rgba(44, 62, 80, 0.7); /* Overlay with new primary color */
    color: white;
    margin-bottom: 40px;
}

.home h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.home p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Homepage Background */
.home-page-bg {
    background-image: url('../assets/Img/8038875_25099.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Owner Section */
.owner-section {
    background: #fffdfa; /* Warm off-white background */
    padding: 60px 20px;
    margin-bottom: 40px;
}

.owner-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.owner-image {
    max-width: 400px;
    flex-shrink: 0;
}

.owner-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.2); /* Softer, deeper shadow */
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.owner-content {
    max-width: 550px;
}

.owner-content h2 {
    color: #2c3e50; /* New primary color */
    font-size: 2.5em;
    margin-bottom: 20px;
}

.owner-content p {
    font-size: 1.1em;
    color: #5a6a7a; /* Softer text color */
    line-height: 1.8;
}

@media (max-width: 768px) {

    .owner-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .owner-content h2 {
        font-size: 2em;
    }
}

/* About */
.about {
    background: #fffdfa; /* Warm off-white background */
    padding: 100px 20px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50; /* New primary color */
}

.about-intro {
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
    font-size: 17px;
    line-height: 1.8;
    color: #5a6a7a; /* Softer text color */
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.about-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.about-card h3 {
    margin-bottom: 15px;
    color: #c09f5c; /* New accent color */
    font-size: 20px;
}

.about-card h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-card ul {
    padding-left: 20px;
}

.about-card li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.about-btn {
    margin-top: 60px;
}

/* Contact */
.contact {
    background: #fffdfa; /* Warm off-white background */
    max-width: 600px;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact h2 {
    margin-bottom: 20px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.contact textarea {
    height: 120px;
    resize: none;
}

.about-btn button {
    background: #c09f5c; /* New accent color */
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.about-btn button:hover {
    background: #a8874a; /* Darker gold on hover */
}

input:invalid, textarea:invalid {
    border: 2px solid red;
}

/*bulk banner*/
.bulk-banner{
  background:#c09f5c; /* New accent color */
  color:white;
  text-align:center;
  padding:40px 20px;
  margin-top:30px;
}

.bulk-banner h2{
  font-size:28px;
  margin-bottom:10px;
}

.bulk-banner p{
  font-size:16px;
  margin-bottom:20px;
}

.bulk-btn{
  background:white;
  color:#c09f5c; /* New accent color */
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* Footer */
footer {
    text-align: center;
    background: #2c3e50; /* New primary color */
    color: white;
    padding: 20px;
    margin-top: 40px;
}

button {
    background: #c09f5c; /* New accent color */
    border: none;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #a8874a; /* Darker gold on hover */
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

button:disabled:hover {
    background: #cccccc;
    transform: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    section {
        padding: 40px 15px;
    }

    .about {
        padding: 60px 15px;
    }

    .about h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .about-card {
        padding: 20px;
    }

    .about-card h3 {
        font-size: 18px;
    }

    .about-btn {
        margin-top: 40px;
    }

    .about-btn button {
        padding: 12px 30px;
    }

    .home h2 {
        font-size: 1.8em;
    }

    .home p {
        font-size: 1em;
    }

    .cart {
        padding: 20px;
    }

    .contact {
        width: 95%;
        padding: 20px;
    }

    button {
        width: 100%;
        padding: 10px 15px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        padding: 12px;
        min-height: 280px;
    }

    .product-card img {
        height: 150px;
    }

    .checkout {
        padding: 40px 15px;
    }

    #cart-count {
        font-size: 10px;
        padding: 1px 5px;
    }
}

/* Cart */
.cart {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

#cartItems {
    margin-top: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.product-name {
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    padding: 5px 12px;
    border: none;
    background: #1a472a;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.remove-btn {
    background: #c0392b;
    border: none;
    color: white;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* Checkout */
.checkout {
    padding: 60px 20px;
    max-width: 700px;
    margin: auto;
}

.checkout-item {
    background: #f5f5f5;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-selector button {
    padding: 5px 10px;
    background: #34495e; /* Secondary dark color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.qty-selector input {
    width: 50px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.subtotal {
    font-weight: bold;
    min-width: 80px;
    text-align: right;
}

.checkout-item .remove-btn {
    background: #c0392b;
    padding: 5px 10px;
    font-size: 14px;
}

#soapWarning {
    color: red;
    display: none; /* Initially hidden, controlled by script.js */
}

#orderBtn {
    padding: 16px 50px;
    background: #25D366;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    display: block;
    margin: 30px auto 0;
}

#orderBtn:hover:not(:disabled) {
    background: #20ba5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

#orderBtn:active:not(:disabled) {
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    background: #2c3e50; /* New primary color */
    color: #ffffff;
    padding: 40px 0 0;
}

.footer__container {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #c09f5c; /* New accent color */
}

.footer__list,
.footer__links {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    list-style: none;
    padding: 0;
}

.footer__list li,
.footer__links li {
    font-size: 14px;
    line-height: 1.6;
}

.footer__link {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #c09f5c; /* New accent color */
}

.footer__copy {
    text-align: center;
    padding: 25px 20px;
    font-size: 12px;
    color: #a8a8a8;
}

@media(max-width: 768px) {
    .footer__title {
        font-size: 16px;
    }

    .footer__list li,
    .footer__links li {
        font-size: 13px;
    }
}

/* Developer Signature */
.dev-signature {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 0;
}

.dev-signature a {
    color: #c09f5c; /* New accent color */
    text-decoration: none;
    font-weight: 500;
}

.dev-signature a:hover {
    text-decoration: underline;
}

/* Copyright Page */
.copyright-section {
    background: #fffdfa; /* Warm off-white background */
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.copyright-container {
    max-width: 900px;
    margin: auto;
}

.copyright-section h1 {
    font-size: 2.5em;
    color: #2c3e50; /* New primary color */
    margin-bottom: 30px;
    text-align: center;
}

.copyright-content h2 {
    font-size: 1.5em;
    color: #2c3e50; /* New primary color */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #c09f5c; /* New accent color */
    padding-bottom: 10px;
}

.copyright-content p,
.copyright-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6a7a; /* Softer text color */
    margin-bottom: 15px;
}

.copyright-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.copyright-content li {
    margin-bottom: 12px;
}

.copyright-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-style: italic;
}

/* Customer Support Page */
.support-section {
    background: #fffdfa; /* Warm off-white background */
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.support-container {
    max-width: 1100px;
    margin: auto;
}

.support-section h1 {
    font-size: 2.5em;
    color: #2c3e50; /* New primary color */
    margin-bottom: 15px;
    text-align: center;
}

.support-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6a7a; /* Softer text color */
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #c09f5c; /* New accent color */
}

.support-card h2 {
    color: #2c3e50; /* New primary color */
    font-size: 1.3em;
    margin-bottom: 15px;
}

.support-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6a7a; /* Softer text color */
    margin-bottom: 12px;
}

.support-note {
    background: #fff3cd;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    color: #856404;
    margin-top: 10px !important;
}

.faq-list,
.support-list {
    list-style: none;
    padding: 0;
}

.faq-list li,
.support-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: #5a6a7a; /* Softer text color */
}

.faq-list li:before,
.support-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c09f5c; /* New accent color */
    font-weight: bold;
}

/* Support Form */
.support-form-section {
    background: #f8f9fa; /* Match body background */
    padding: 50px 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.support-form-section h2 {
    color: #2c3e50; /* New primary color */
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.support-form {
    max-width: 600px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50; /* New primary color */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c09f5c;
    box-shadow: 0 0 5px rgba(192, 159, 92, 0.4);
}

.support-btn {
    width: 100%;
    background: #c09f5c; /* New accent color */
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.support-btn:hover {
    background: #a8874a; /* Darker gold on hover */
}

/* Business Hours */
.business-hours {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.business-hours h2 {
    color: #2c3e50; /* New primary color */
    font-size: 1.5em;
    margin-bottom: 25px;
}

.hours-table {
    margin: auto;
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #eee;
}

.hours-table td {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    color: #5a6a7a; /* Softer text color */
}

.hours-table td:first-child {
    font-weight: 600;
    color: #2c3e50; /* New primary color */
    width: 150px;
}

.hours-table tr:last-child {
    border-bottom: none;
}

@media(max-width: 768px) {
    .copyright-section,
    .support-section {
        padding: 40px 15px;
    }

    .copyright-section h1,
    .support-section h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .support-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .copyright-content h2 {
        font-size: 1.2em;
        margin-top: 20px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .support-card {
        padding: 20px;
    }

    .support-form-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .hours-table td {
        padding: 10px;
        font-size: 13px;
    }

    .hours-table td:first-child {
        width: 120px;
    }
}