/* Reset and Browser Compatibility */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Normalize styles for better cross-browser compatibility */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #fff;
}

/* Fix for display issues on older browsers */
article, aside, details, figcaption, figure, footer, header, main, nav, section {
    display: block;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix for button and input elements */
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

/* Fallback styles for CSS Grid on older browsers */
@supports not (display: grid) {
    .problems-grid, .solution-grid, .cta-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .problem-item, .solution-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 30px);
        flex: 0 1 calc(50% - 30px);
        min-width: 250px;
        margin: 15px;
    }
    
    .cta-text, .cta-actions {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        margin: 15px 0;
    }
}

/* Fallback for backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .solution-item, .cta-actions {
        background: rgba(255, 255, 255, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-wa {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1001;
}

.floating-wa a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.floating-wa a:hover {
    transform: scale(1.05);
}

.floating-wa i {
    font-size: 24px;
    margin-right: 10px;
}

.floating-promo {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    z-index: 1000;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-text {
    font-weight: bold;
    font-size: 16px;
}

.close-promo {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('./assets/stiker1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 3px;
}

.hero-content ul {
    list-style: none;
}

.hero-content li {
    padding: 5px 0;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-content li::before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 10px;
}

.product-highlight {
    position: relative;
    height: 600px;
    z-index: 1;
}

.product-highlight img {
    position: absolute;
    border-radius: 20px;
    width: 12rem;
    height: 12rem;
    border: 3px solid white;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.product-highlight img:hover {
    transform: scale(1.05);
}

.img-1 {
    top: 20px;
    left: 0px;
    transform: rotate(-8deg);
    z-index: 3;
}

.img-2 {
    top: 200px;
    right: 20px;
    transform: rotate(12deg);
    z-index: 2;
}

.img-3 {
    top: 450px;
    left: 40px;
    transform: rotate(-6deg);
    z-index: 4;
}

.business-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.business-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.business-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.business-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.card-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card-image img:hover {
    transform: scale(1.02);
}

.problem-section {
    padding: 100px 0;
    background: #fff5f2;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.problems-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    /* Fallback for older browsers */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Ensure grid items work on older browsers */
.problem-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    -webkit-box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    /* Flexbox fallback */
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 30px);
    flex: 0 1 calc(25% - 30px);
    min-width: 250px;
    margin: 15px;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #dc3545, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.solution-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.solution-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.solution-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    /* Fallback for older browsers */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.solution-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* Fallback for browsers that don't support backdrop-filter */
    background-color: rgba(255, 255, 255, 0.1);
    /* Flexbox fallback */
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 30px);
    flex: 0 1 calc(25% - 30px);
    min-width: 250px;
    margin: 15px;
}

.solution-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.15);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-icon i {
    font-size: 2rem;
    color: #fff;
}

.solution-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.solution-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.ecommerce-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.choice-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.choice-header {
    margin-bottom: 25px;
}

.choice-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.choice-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.choice-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ready-buy .ecommerce-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ready-buy .ecommerce-btn {
    flex: 1;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.cta-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* Fallback for older browsers */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cta-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.2rem;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-actions {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* Fallback for browsers that don't support backdrop-filter */
    background-color: rgba(255, 255, 255, 0.1);
}

.action-group {
    text-align: center;
}

.action-group h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.action-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    /* Fallback for gap property */
    margin: -7.5px;
}

.action-buttons > * {
    margin: 7.5px;
}

.action-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.action-btn.primary {
    background: #42b883;
    color: white;
}

.action-btn.secondary {
    background: #ee4d2d;
    color: white;
}

.action-btn.whatsapp {
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.action-btn:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.divider span {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item ul {
    list-style: none;
}

.benefit-item li {
    padding: 5px 0;
    font-weight: bold;
    color: #ff6b35;
    font-size: 1.5rem;
}

.benefit-item li::before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 10px;
}
/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reviews-grid img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Social Section */
.social-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.social-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.social-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.instagram { background: linear-gradient(45deg, #ff6b35, #f7931e); }
.facebook { background: #ff6b35; }
.twitter { background: #f7931e; }
.youtube { background: #ff6b35; }
.linkedin { background: #f7931e; }

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Animations */
@keyframes slideInUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .product-highlight {
        height: 400px;
        margin-top: 10px;
    }
    
    .img-1 {
        top: 5px;
        left: 0px;
        width: 200px;
        height: 130px;
        transform: rotate(-5deg);
    }
    
    .img-2 {
        top: 130px;
        right: 10px;
        width: 170px;
        height: 170px;
        transform: rotate(8deg);
    }
    
    .img-3 {
        top: 280px;
        left: 20px;
        width: 190px;
        height: 150px;
        transform: rotate(-4deg);
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .floating-wa {
        bottom: 100px;
        right: 20px;
    }
    
    .floating-wa span {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ecommerce-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ecommerce-btn {
        width: 200px;
        justify-content: center;
    }

    .problems-grid, .solution-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: -10px;
    }

    .problems-grid > *, .solution-grid > * {
        margin: 10px;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% - 20px);
        flex: 0 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .problem-item, .solution-item {
        padding: 25px 20px;
    }

    /* Choice Grid Responsive */
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .choice-card {
        padding: 30px 20px;
    }

    .choice-header h3 {
        font-size: 1.3rem;
    }

    .ready-buy .ecommerce-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .ready-buy .ecommerce-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .consultation-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    /* CTA Section Responsive */
    .cta-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
        margin: -20px;
    }

    .cta-content > * {
        margin: 20px;
    }

    .cta-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .cta-text p {
        text-align: center;
        font-size: 1.1rem;
    }

    .cta-actions {
        padding: 30px 20px;
    }

    .action-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: -6px;
    }

    .action-buttons > * {
        margin: 6px;
    }

    .action-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .action-btn.whatsapp {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-features {
        gap: 12px;
        margin-bottom: 20px;
    }

    .cta-feature {
        font-size: 1rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .product-highlight {
        height: 320px;
    }
    
    .img-1 {
        top: 10px;
        left: 0px;
        width: 190px;
        height: 120px;
        transform: rotate(-3deg);
    }
    
    .img-2 {
        top: 130px;
        right: 5px;
        width: 170px;
        height: 130px;
        transform: rotate(5deg);
    }
    
    .img-3 {
        top: 240px;
        left: 15px;
        width: 180px;
        height: 130px;
        transform: rotate(-3deg);
    }
    
    .business-card {
        margin: 0 10px;
    }
    
    .promo-text {
        font-size: 14px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reviews-grid img {
        border-radius: 10px;
    }

    .problem-item, .solution-item {
        padding: 20px 15px;
    }

    .problem-icon, .solution-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .problem-icon i, .solution-icon i {
        font-size: 1.5rem;
    }

    /* Choice Cards Mobile */
    .choice-card {
        padding: 25px 15px;
    }

    .choice-header i {
        font-size: 2.5rem;
    }

    .choice-header h3 {
        font-size: 1.2rem;
    }

    .choice-card p {
        font-size: 0.95rem;
    }

    .ready-buy .ecommerce-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .consultation-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* CTA Mobile */
    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-actions {
        padding: 25px 15px;
    }

    .action-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .action-btn.whatsapp {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}
