        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, #4a6b5a 0%, #3d5a4a 25%, #2f4a3c 50%, #1f3a2c 75%, #0f2a1c 100%);
            padding: 6rem 0;
            color: #ffffff;
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 400;
            margin-bottom: 1rem;
            color: #ffffff;
            line-height: 1.2;
        }

        .newsletter-divider {
            width: 60px;
            height: 3px;
            background: rgba(255, 255, 255, 0.6);
            margin: 0 auto 2rem;
        }

        .newsletter-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
        }

        .newsletter-form {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        .email-input {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-sm);
            color: #ffffff;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .email-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }

        .consent-group {
            margin-bottom: 2rem;
            text-align: left;
        }

        .consent-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
        }

        .consent-checkbox {
            width: 18px;
            height: 18px;
            margin: 0;
            flex-shrink: 0;
            margin-top: 0.1rem;
            accent-color: rgba(255, 255, 255, 0.8);
        }

        .consent-text {
            font-size: 0.85rem;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.8);
        }

        .subscribe-button {
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .subscribe-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .privacy-note {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-style: italic;
        }

        .community-message {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Responsive Design for Newsletter Section */
        @media (max-width: 768px) {
            .newsletter-section {
                padding: 4rem 0;
            }
            
            .newsletter-form {
                padding: 2rem 1.5rem;
            }
            
            .newsletter-icon {
                width: 60px;
                height: 60px;
            }
            
            .newsletter-icon svg {
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 480px) {
            .newsletter-form {
                padding: 1.5rem 1rem;
            }
            
            .consent-label {
                gap: 0.5rem;
            }
            
            .consent-text {
                font-size: 0.8rem;
            }
        }
