* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1000px;
}

.content {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 500px;
}

.swami-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.text-section {
    flex: 1;
    padding: 50px 40px;
}

.title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.1em;
    color: #764ba2;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.coming-soon {
    margin-bottom: 30px;
}

.coming-soon h2 {
    font-size: 1.8em;
    color: #667eea;
    margin-bottom: 15px;
}

.description {
    color: #555;
    line-height: 1.8;
    font-size: 1em;
}

.mission-info {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.mission-info h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.mission-info p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95em;
}

.newsletter {
    margin-bottom: 30px;
}

.newsletter h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.email-form {
    display: flex;
    gap: 10px;
}

.email-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s;
}

.email-form input:focus {
    outline: none;
    border-color: #667eea;
}

.email-form button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #999;
}

.footer p {
    margin: 8px 0;
}

.contact-info {
    color: #666;
    font-size: 0.85em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 30px;
    }

    .image-section {
        min-height: 300px;
        padding: 30px 20px;
    }

    .swami-image {
        max-width: 250px;
    }

    .text-section {
        padding: 30px 20px;
    }

    .title {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    .coming-soon h2 {
        font-size: 1.5em;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .title {
        font-size: 1.7em;
    }

    .tagline {
        font-size: 0.9em;
    }

    .text-section {
        padding: 20px;
    }

    .coming-soon h2 {
        font-size: 1.3em;
    }

    .description {
        font-size: 0.9em;
    }
}