 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Georgia', serif;
        background: linear-gradient(135deg, #87ceeb 0%, #4682b4 50%, #b0e0e6 100%);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow-x: hidden;
    }

    body::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 100 100"><defs><pattern id="cross" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M8 2v6h4V2h2v6h4v2h-4v4h4v2h-4v4h-2v-4H8v4H6v-4H2v-2h4V8H2V6h4V2z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23cross)"/></svg>') repeat;
        animation: floatPattern 20s linear infinite;
    }

    @keyframes floatPattern {
        0% { transform: translateY(0px); }
        100% { transform: translateY(-100px); }
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .logo-container {
        text-align: center;
        margin-bottom: 40px;
        animation: fadeInDown 1s ease-out;
    }

    .logo {
        font-size: 3.5rem;
        font-weight: bold;
        color: #ffd700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        margin-bottom: 10px;
        background: linear-gradient(90deg, #ffd700 0%, #ffffff 25%, #ffed4e 50%, #ffffff 75%, #ffd700 100%);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: goldShine 20s ease-in-out infinite;
    }

    @keyframes goldShine {
        0% { background-position: 200% 0; }
        50% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    .cross-icon {
        font-size: 2rem;
        color: #ffd700;
        margin: 0 15px;
        animation: glow 4s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from { text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700; }
        to { text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700; }
    }

    .main-content {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 50px 40px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        max-width: 800px;
        animation: fadeInUp 1s ease-out 0.3s both;
        position: relative;
    }

    .main-content::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #87ceeb, #4682b4, #b0e0e6, #5dade2);
        border-radius: 22px;
        z-index: -1;
        animation: borderGlow 3s ease-in-out infinite;
    }

    @keyframes borderGlow {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }

    .title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .subtitle {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 30px;
        line-height: 1.6;
        background: rgba(255, 255, 255, 0.9);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-left: 4px solid #87ceeb;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin: 40px 0;
    }

    .product-card {
        background: linear-gradient(135deg, #87ceeb, #4682b4);
        color: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        transform: translateY(0);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .product-card::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;
    }

    .product-card:hover::before {
        left: 100%;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .product-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: block;
    }

    .product-title {
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .product-desc {
        font-size: 0.9rem;
        opacity: 0.9;
        line-height: 1.4;
    }

    .newsletter {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        margin: 40px 0;
        border: 1px solid #e9ecef;
    }

    .newsletter h3 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #5a4fcf;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .textarea-container {
        position: relative;
    }
    
    .message-input {
        width: 100%;
        min-height: 80px;
        padding: 10px;
        border: 2px solid #e1e5e9;
        border-radius: 8px;
        font-family: inherit;
        font-size: 14px;
        line-height: 1.4;
        resize: vertical;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
    }
    
    .message-input:focus {
        outline: none;
        border-color: #87ceeb;
        box-shadow: 0 0 0 3px rgba(90, 79, 207, 0.1);
    }
    
    .char-counter {
        position: absolute;
        bottom: 8px;
        right: 8px;
        font-size: 11px;
        color: #666;
        background: rgba(255, 255, 255, 0.9);
        padding: 2px 6px;
        border-radius: 4px;
        pointer-events: none;
    }
    
    .char-counter.warning {
        color: #ff6b6b;
        font-weight: 600;
    }
    
    .newsletter form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        display: flex;
        gap: 10px;
        align-items: flex-end;
    }
    
    @media (max-width: 600px) {
        .form-row {
            flex-direction: column;
            align-items: stretch;
        }
        
        .notify-btn {
            margin-top: 10px;
        }
    }

    .email-form {
        display: flex;
        gap: 10px;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .email-input {
        flex: 1;
        padding: 12px 15px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .email-input:focus {
        outline: none;
        border-color: #87ceeb;
    }

    .notify-btn {
        background: linear-gradient(135deg, #87ceeb, #4682b4);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .notify-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(70, 130, 180, 0.4);
    }

    .progress-container {
        margin: 30px 0;
    }

    .progress-label {
        color: #2c3e50;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .progress-bar {
        width: 100%;
        height: 8px;
        background: #e9ecef;
        border-radius: 4px;
        overflow: hidden;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #87ceeb, #4682b4);
        width: 0%;
        border-radius: 4px;
        animation: fillProgress 3s ease-out 1s forwards;
    }

    @keyframes fillProgress {
        to { width: 75%; }
    }

    .supplier-section {
        background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
        padding: 30px;
        border-radius: 15px;
        margin: 30px 0;
        border: 2px solid #87ceeb;
        text-align: center;
    }

    .supplier-section h3 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .supplier-btn {
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #2c3e50;
        border: none;
        padding: 15px 30px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1rem;
        text-decoration: none;
        display: inline-block;
        margin-top: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .supplier-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    /}
    /*
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
        */

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #87ceeb, #4682b4);
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 5px 15px rgba(70, 130, 180, 0.4);
    }

    .verse {
        font-style: italic;
        color: #7f8c8d;
        margin: 30px 0;
        font-size: 1.1rem;
        padding: 20px;
        background: #f8f9fa;
        border-left: 4px solid #ffd700;
        border-radius: 0 10px 10px 0;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .logo {
            font-size: 2.5rem;
        }
        
        .title {
            font-size: 2rem;
        }
        
        .main-content {
            padding: 30px 20px;
            margin: 20px;
        }
        
        .products-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .email-form {
            flex-direction: column;
        }
    }

    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }

    .floating-cross {
        position: absolute;
        color: rgba(255, 215, 0, 0.3);
        font-size: 1.5rem;
        animation: float 12s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(10deg); }
    }

    .floating-cross:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
    .floating-cross:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
    .floating-cross:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
    .floating-cross:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }