  /* Your existing CSS remains the same */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .nakshatra-body {
        background-color: #f5f8fa;
        color: #333;
        line-height: 1.6;
        
    }
    
    .nakshatra-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .nakshatra-header {
        background: linear-gradient(135deg, #1a6fc4, #2c87e3);
        color: white;
        padding: 30px 0;
        text-align: center;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }
    
    .nakshatra-logo {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .nakshatra-logo-icon {
        color: #ffcc00;
    }
    
    .nakshatra-header-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-family: 'Unbounded', sans-serif;
    }
    
    .nakshatra-header-desc {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .nakshatra-content-row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .nakshatra-contact-details {
        flex: 1;
        min-width: 300px;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    
    .nakshatra-contact-title {
        color: #1a6fc4;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eaeaea;
        font-family: 'Unbounded', sans-serif;
    }
    
    .nakshatra-info-block {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .nakshatra-info-icon-wrapper {
        width: 50px;
        height: 50px;
        background: #e6f2ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: #FFA500;
        font-size: 20px;
    }
    
    .nakshatra-info-text h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .nakshatra-contact-form {
        flex: 1;
        min-width: 300px;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    
    .nakshatra-form-title {
        color: #1a6fc4;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eaeaea;
        font-family: 'Unbounded', sans-serif;
    }
    
    .nakshatra-form-group {
        margin-bottom: 20px;
    }
    
    .nakshatra-form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }
    
    .nakshatra-form-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .nakshatra-form-input:focus {
        outline: none;
        border-color: #2c87e3;
        box-shadow: 0 0 0 3px rgba(44, 135, 227, 0.2);
    }
    
    .nakshatra-form-textarea {
        min-height: 150px;
        resize: vertical;
    }
    
    .nakshatra-submit-btn {
        display: inline-block;
        background: #FFA500;
        color: white;
        padding: 12px 25px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .nakshatra-submit-btn:hover {
        background: #155ea3;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nakshatra-map-container {
        margin-top: 20px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        height: 450px;
    }
    
    .nakshatra-map-frame {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .nakshatra-footer {
        text-align: center;
        padding: 20px;
        margin-top: 40px;
        color: #666;
        border-top: 1px solid #eaeaea;
    }
    
    @media (max-width: 768px) {
        .nakshatra-content-row {
            flex-direction: column;
        }
        
        .nakshatra-header-title {
            font-size: 2rem;
        }
        
        .nakshatra-header-desc {
            font-size: 1rem;
            padding: 0 20px;
        }
        
        .nakshatra-map-container {
            height: 350px;
        }
    }
    
    .nakshatra-success-msg {
        background: #d4edda;
        color: #155724;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 20px;
    }
    
    .nakshatra-error-msg {
        background: #f8d7da;
        color: #721c24;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 20px;
    }
    
    .nakshatra-field-error {
        color: #dc3545;
        font-size: 14px;
        margin-top: 5px;
        display: none;
    }
    
    .nakshatra-social-container {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .nakshatra-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #e6f2ff;
        color: #FFA500;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .nakshatra-social-link:hover {
        background: #1a6fc4;
        color: white;
        transform: translateY(-3px);
    }
    
    .nakshatra-loading {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255,255,255,.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 1s ease-in-out infinite;
        margin-right: 10px;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }