/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e3a8a;
    overflow-x: hidden;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #dbeafe;
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(30, 58, 138, 0.3));
}

.nav-logo h2 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 50%, #3b82f6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="pool" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="%23ffffff" opacity="0.05"/><circle cx="100" cy="100" r="80" fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.1"/><circle cx="100" cy="100" r="40" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.15"/></pattern></defs><rect width="1200" height="800" fill="url(%23pool)"/><path d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23ffffff" opacity="0.1"/></svg>');
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="water" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.2"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23water)"/><circle cx="800" cy="300" r="200" fill="url(%23water)"/><circle cx="400" cy="700" r="180" fill="url(%23water)"/><circle cx="900" cy="700" r="120" fill="url(%23water)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    100% {
        text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-main-logo {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.4));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 8px 40px rgba(255, 255, 255, 0.6));
    }
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4), 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Product Section */
.product-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="waterDrops" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="3" fill="%233b82f6" opacity="0.1"/><circle cx="20" cy="20" r="2" fill="%233b82f6" opacity="0.08"/><circle cx="80" cy="30" r="2.5" fill="%233b82f6" opacity="0.06"/></pattern></defs><rect width="1200" height="600" fill="url(%23waterDrops)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: #3b82f6;
    font-weight: 500;
    margin-top: 1rem;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af, #3b82f6);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 32px 80px rgba(30, 58, 138, 0.25), 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-main-image {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.25), 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.product-main-image:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.35), 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

    .product-info h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: center;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .product-description {
        color: #3b82f6;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        font-size: 1rem;
        font-weight: 500;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: center;
        padding: 0 10px;
        box-sizing: border-box;
    }

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    display: block;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
}

.shipping-note {
    font-size: 0.9rem;
    color: #3b82f6;
}

.product-btn {
    width: 100%;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="poolTiles" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><rect width="80" height="80" fill="none" stroke="%23dbeafe" stroke-width="1" opacity="0.3"/><circle cx="40" cy="40" r="20" fill="none" stroke="%23dbeafe" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="1200" height="800" fill="url(%23poolTiles)"/></svg>');
    opacity: 0.4;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

.about-text p {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

.about-features {
    display: grid;
    gap: 2rem;
}

    .feature {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(59, 130, 246, 0.1);
        backdrop-filter: blur(10px);
        min-height: 120px;
        box-sizing: border-box;
    }

.feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
}

    .feature h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none;
        white-space: normal;
    }

    .feature p {
        color: #3b82f6;
        line-height: 1.5;
        font-weight: 500;
        font-size: 0.95rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: left;
    }

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="waterRipples" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="60" cy="60" r="40" fill="none" stroke="%23dbeafe" stroke-width="1" opacity="0.2"/><circle cx="60" cy="60" r="20" fill="none" stroke="%23dbeafe" stroke-width="1" opacity="0.3"/><circle cx="60" cy="60" r="5" fill="%23dbeafe" opacity="0.4"/></pattern></defs><rect width="1200" height="600" fill="url(%23waterRipples)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1), 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item i {
    font-size: 2rem;
    color: #1e3a8a;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.contact-item p {
    color: #3b82f6;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="footerWaves" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M0,100 Q50,50 100,100 T200,100 L200,200 L0,200 Z" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="1200" height="400" fill="url(%23footerWaves)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #dbeafe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3b82f6;
    color: #dbeafe;
    position: relative;
    z-index: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    color: #000;
    background: white;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #1e3a8a;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.product-specs {
    margin: 1.5rem 0;
}

.product-specs h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 0.5rem 0;
    color: #3b82f6;
    position: relative;
    padding-left: 1.5rem;
}

.product-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
}

.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid #dbeafe;
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-item.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e3a8a;
    border-bottom: none;
    border-top: 2px solid #1e3a8a;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.shipping-calculator {
    margin-bottom: 1.5rem;
}

.shipping-calculator h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    align-items: end;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.paypal-button-container {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .navbar {
        height: 70px;
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-container {
        height: 70px;
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
        padding: 2rem 0;
        border-top: 1px solid rgba(59, 130, 246, 0.1);
        z-index: 999;
        transform: translateX(-100%);
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }

    .nav-link {
        padding: 1.25rem 0;
        font-size: 1.2rem;
        font-weight: 600;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: #3b82f6;
        transform: translateX(10px);
    }

    .nav-logo {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }

    .logo-image {
        height: 40px;
        width: auto;
        transition: all 0.3s ease;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
        white-space: nowrap;
        font-weight: 700;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: none;
        max-width: 100%;
        overflow-wrap: break-word;
        white-space: normal;
        text-align: center;
        padding: 0 15px;
        word-break: keep-all;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 100%;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: center;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .hero-main-logo {
        height: 180px;
        animation: logoFloat 3s ease-in-out infinite;
    }

    @keyframes logoFloat {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    .hero-placeholder {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        margin: 0 15px;
        gap: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
        overflow: hidden;
    }

    .product-main-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
        max-width: 100%;
        object-fit: cover;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .about-text {
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: none;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        padding: 0 15px;
        box-sizing: border-box;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        hyphens: none;
        max-width: 100%;
        margin-bottom: 1.5rem;
        white-space: normal;
        text-align: left;
        padding: 0 10px;
        box-sizing: border-box;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .about-features {
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 1.25rem;
        margin: 0;
        max-width: 100%;
        word-wrap: break-word;
        box-sizing: border-box;
        overflow: hidden;
    }

    .feature h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        margin-bottom: 0.5rem;
    }

    .feature p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-links a {
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
        border-radius: 20px;
        max-height: 95vh;
        overflow-y: auto;
    }

    .main-image {
        height: 220px;
        border-radius: 12px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }

    .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 12px;
        border: 2px solid #e5e7eb;
        transition: all 0.3s ease;
    }

    .form-group input:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        transform: translateY(-1px);
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
        font-size: 1.1rem;
        min-height: 52px;
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    }

    .hero-buttons .btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        padding: 0;
        margin-bottom: 1rem;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .hero-main-logo {
        height: 140px;
        animation: logoPulse 2s ease-in-out infinite;
    }

    @keyframes logoPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    .section-header h2 {
        font-size: 1.7rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: none;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        padding: 0 20px;
        box-sizing: border-box;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        hyphens: none;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .product-card {
        padding: 1.5rem;
        margin: 0 15px;
        gap: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 12px 35px rgba(30, 58, 138, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .product-main-image {
        width: 200px;
        height: 200px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 46px;
        border-radius: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
        box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
    }

    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .logo-image {
        height: 35px;
    }

    .nav-logo h2 {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow: hidden;
    }

    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 16px;
        max-height: 98vh;
    }

    .main-image {
        height: 200px;
        border-radius: 10px;
    }

    .thumbnail {
        width: 55px;
        height: 55px;
        border-radius: 6px;
    }

    .about-text h2 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .contact-item i {
        font-size: 1.75rem;
        padding: 0.75rem;
        background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1e3a8a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce motion for better performance on mobile */
    * {
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
    }
    
    /* Optimize animations for mobile */
    .hero-main-logo,
    .logo-image {
        will-change: transform;
    }
    
    /* Smooth mobile scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Enhanced mobile touch targets */
    .btn,
    .nav-link,
    .product-card,
    .feature,
    .contact-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mobile-specific text selection */
    ::selection {
        background: rgba(59, 130, 246, 0.2);
        color: #1e3a8a;
    }
    
    /* Mobile viewport optimization */
    .container,
    .hero-container,
    .about-content,
    .contact-content {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Prevent word breaking for important terms */
    .hero-title,
    .section-header h2,
    .about-text h2,
    .product-info h3 {
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    /* Ensure text stays within bounds */
    .hero-title,
    .hero-subtitle,
    .section-header h2,
    .section-header p,
    .about-text h2,
    .about-text p,
    .product-info h3,
    .product-description,
    .feature h3,
    .feature p {
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    /* Better text alignment for mobile */
    .hero-title,
    .section-header h2,
    .about-text h2 {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-text p,
    .feature p {
        text-align: left;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Prevent word breaking - keep words intact */
    .hero-title,
    .hero-subtitle,
    .section-header h2,
    .section-header p,
    .about-text h2,
    .about-text p,
    .product-info h3,
    .product-description,
    .feature h3,
    .feature p,
    .contact-item h3,
    .contact-item p {
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none;
        white-space: normal;
        line-height: 1.4;
    }
    
    /* Specific fixes for problematic text */
    .hero-title {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        line-height: 1.2;
    }
    
    .about-text h2 {
        font-size: clamp(1.3rem, 4vw, 2rem);
        line-height: 1.2;
    }
    
    /* Global mobile text optimization - prevent word breaking */
    * {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
    }
    
    /* Ensure proper text flow for specific elements */
    .feature h3,
    .feature p,
    .about-text h2,
    .about-text p,
    .section-header h2,
    .section-header p,
    .hero-title,
    .hero-subtitle,
    .product-info h3,
    .product-description,
    .contact-item h3,
    .contact-item p {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }
    
    /* Optimize feature boxes for better text flow */
    .feature {
        min-height: 140px;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .feature p {
        font-size: 0.9rem;
        line-height: 1.4;
        flex-grow: 1;
    }
}

/* Enhanced animations and micro-interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Add animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Enhanced hover effects */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

/* Enhanced logo animation */
.logo-image {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.4));
}

/* Enhanced section transitions */
.section-header {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.product-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.about-content {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.contact-info {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* Enhanced focus states for accessibility */
.btn:focus,
.nav-link:focus,
input:focus {
    outline: 3px solid rgba(59, 130, 246, 0.3);
    outline-offset: 2px;
}

/* Enhanced loading states */
.loading {
    border: 3px solid #e5e7eb;
    border-top: 3px solid #1e3a8a;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

/* Advanced Mobile Enhancements */
@media (max-width: 768px) {
    /* Enhanced mobile animations */
    .hero-container {
        animation: slideInFromBottom 1s ease-out;
    }
    
    @keyframes slideInFromBottom {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile-specific hover effects */
    .product-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Enhanced mobile navigation */
    .nav-menu {
        backdrop-filter: blur(25px);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .nav-link {
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #1e40af);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after,
    .nav-link:active::after {
        width: 80%;
    }
    
    /* Mobile touch feedback */
    .feature:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .contact-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Enhanced mobile typography */
    .hero-title {
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }
    
    /* Mobile-specific loading states */
    .loading {
        width: 28px;
        height: 28px;
        border-width: 4px;
    }
    
    /* Enhanced mobile shadows */
    .product-card {
        box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .contact-item {
        box-shadow: 0 12px 35px rgba(30, 58, 138, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    
    /* Mobile-specific spacing */
    .section-header {
        margin-bottom: 3rem;
        padding: 0 10px;
    }
    
    .about-content {
        padding: 0 10px;
    }
    
    .contact-content {
        padding: 0 10px;
    }
    
    /* Enhanced mobile form styling */
    .form-group input {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(59, 130, 246, 0.2);
    }
    
    .form-group input:focus {
        background: white;
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }
}

/* Ultra-small mobile devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: center;
        padding: 0 25px;
        box-sizing: border-box;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: center;
        padding: 0 25px;
        box-sizing: border-box;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        text-align: left;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .product-card {
        margin: 0 8px;
        padding: 1rem;
        max-width: calc(100vw - 16px);
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .product-main-image {
        width: 160px;
        height: 160px;
        max-width: 100%;
        object-fit: cover;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-height: 44px;
        white-space: nowrap;
        text-align: center;
    }
    
    .hero-buttons .btn {
        max-width: 260px;
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .feature h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
    }
    
    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-container {
        min-height: 80vh;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-main-logo {
        height: 120px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        max-width: 200px;
        padding: 12px 20px;
    }
}

