* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.15);
    z-index: -1;
    animation: float 15s ease-in-out infinite;
}

body::before {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

body::after {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 7s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    min-height: 100vh;
}

.container::before,
.container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.12);
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.container::before {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 5%;
    animation-delay: 3s;
}

.container::after {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 8%;
    animation-delay: 10s;
}

/* Background Circles */
.bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.08);
    animation: float 25s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 12%;
    animation-delay: 3s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 45%;
    left: 15%;
    animation-delay: 6s;
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 35%;
    right: 25%;
    animation-delay: 9s;
}

.circle-5 {
    width: 140px;
    height: 140px;
    bottom: 30%;
    left: 20%;
    animation-delay: 12s;
}

.circle-6 {
    width: 90px;
    height: 90px;
    bottom: 15%;
    right: 18%;
    animation-delay: 15s;
}

.circle-7 {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 5%;
    animation-delay: 18s;
}

.circle-8 {
    width: 110px;
    height: 110px;
    bottom: 40%;
    right: 8%;
    animation-delay: 21s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-40px) translateX(30px);
        opacity: 0.15;
    }
    50% {
        transform: translateY(20px) translateX(-20px);
        opacity: 0.12;
    }
    75% {
        transform: translateY(-15px) translateX(25px);
        opacity: 0.1;
    }
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 6px;
    margin-left: -20px;
}

.text-content {
    margin-top: 6px;
}

.logo {
    width: 350px;
    height: 350px;
    object-fit: contain;
}

.uc-badge {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-left {
    max-width: 500px;
}

.main-title {
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.description {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Main Image Section */
.content-right {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container {
    position: relative;
    width: 120%;
    height: 120%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: -300px;
}

.main-image {
    width: 1100px;
    height: auto;
    object-fit: contain;
}

/* Email Signup Section */
.email-signup-section {
    margin-top: 0px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.email-signup-container {
    background: transparent;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.signup-title {
    font-size: 24px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.email-input-container {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 50px;
    padding: 4px;
    border: 2px solid #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    color: #2c3e50;
    outline: none;
    border-radius: 50px;
}

.email-input::placeholder {
    color: #999999;
    font-size: 16px;
    opacity: 0.8;
}

.submit-btn {
    background: #e74c3c;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.submit-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.privacy-text {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* Email signup messages */
.signup-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.signup-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.signup-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    margin-top: 0px;
    padding: 20px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-title {
    font-size: 42px;
    font-weight: 600;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #FF6B35);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    text-align: left;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #FF6B35);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}



.feature-icon svg {
    fill: #FF6B35;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    fill: #FF8C42;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #e74c3c;
}

.feature-card:hover .feature-description {
    color: #495057;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(231, 76, 60, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    color: #e74c3c;
}

.social-icon svg {
    fill: #e74c3c;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: white;
}

.footer-text {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.made-with-love {
    font-size: 14px;
    color: #7f8c8d;
    margin: 10px 0 0 0;
    font-weight: 400;
}

.made-with-love a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.made-with-love a:hover {
    color: #FF6B35;
    text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .logo {
        width: 280px;
        height: 280px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-right {
        height: 300px;
    }
    
    .main-image {
        width: 750px;
        height: auto;
    }
    
    .email-signup-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .signup-title {
        font-size: 20px;
    }
    
    .email-input-container {
        flex-direction: column;
        gap: 12px;
        background: transparent;
        padding: 0;
    }
    
    .email-input {
        background: #2a2a2a;
        border: 1px solid #333;
        border-radius: 50px;
        padding: 16px 20px;
    }
    
    .submit-btn {
        align-self: center;
        width: 60px;
        height: 48px;
        border-radius: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .features-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .container {
        padding: 15px;
    }
}