
/*main page styles*/
       
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(90deg, #182b83 30%, #6265ee 100%);
            min-height: 100vh;
        }
        
        /* Navigation Bar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .navbar-logo {
            font-size: 1.5em;
            font-weight: bold;
            color: #667eea;
            text-decoration: none;
        }

        .navbar-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .navbar-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .navbar-links a:hover {
            color: #667eea;
        }

        .navbar-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #667eea;
        }
        /* Hero Section */
        .hero {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 20px;
            text-align: center;
            color: white;
        }

        .hero h1 {
            font-size: 4em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInDown 1s;
        }

        .hero p {
            font-size: 1.5em;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: fadeInUp 1s;
        }

        /* Services Section */
        .services-intro {
            font-size: 1.4em;
            font-weight: 500;
            margin-bottom: 30px;
        
            color: white;
            text-align: center;
            animation: fadeIn 1.5s;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            animation: fadeInUp 1s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .service-icon {
            font-size: 4em;
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.8em;
            font-weight: bold;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .service-description {
            color: #718096;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
            display: inline-block;
            margin-top: 10px;
        }

        .service-button:hover {
            transform: scale(1.05);
        }

       

        /* Animations */
        @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);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

    
/*Gematria page*/
        .revgem{
            max-width: 175px;
        
        }
        .donation-banner {
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .donation-text {
            color: #4a5568;
            font-size: 0.95em;
        }

        .donation-link {
            background: #667eea;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s;
        }

        .donation-link:hover {
            transform: scale(1.05);
            background: #5568d3;
        }

        .card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .controls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .control-group {
            display: flex;
            flex-direction: column;
        }

        .control-group label {
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 8px;
            font-size: 0.9em;
        }

        select, input {
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1em;
            transition: border-color 0.3s;
            width: 100%;
        }

        select:focus, input:focus {
            outline: none;
            border-color: #667eea;
        }

        .search-input {
            font-size: 1.2em;
            padding: 15px;
        }

        .gematria-value {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 20px;
        }

        .gematria-value h2 {
            font-size: 0.9em;
            opacity: 0.9;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .gematria-value .value {
            font-size: 4em;
            font-weight: bold;
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .results-title {
            font-size: 1.2em;
            font-weight: 600;
            color: #2d3748;
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: #f7fafc;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: transform 0.2s;
        }

        .result-item:hover {
            transform: translateX(5px);
            background: #edf2f7;
        }

        .result-hebrew {
            font-size: 1.8em;
            font-weight: 600;
            color: #4c51bf;
            margin-bottom: 5px;
        }

        .result-english {
            color: #718096;
            font-size: 0.95em;
        }

        .result-value {
            font-size: 1.5em;
            font-weight: 700;
            color: #667eea;
            font-family: 'Courier New', monospace;
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #667eea;
        }

        .spinner {
            border: 4px solid #f3f4f6;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        /*hebrew button*/
        .search-input.rtl {
    direction: rtl;
    text-align: right;
    unicode-bidi: bidi-override;
}

        .hebrew-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            cursor: pointer;
        }

        .hebrew-toggle input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .hebrew-toggle label {
            cursor: pointer;
            user-select: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .help-text {
            color: #718096;
            font-size: 0.9em;
            margin-top: 10px;
            padding: 15px;
            background: #edf2f7;
            border-radius: 8px;
        }

        
        /*Tarot page*/

        .dropdown-item {
            padding: 12px 20px;
            color: #4a5568;
            cursor: pointer;
            transition: all 0.2s;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: #f7fafc;
            color: #667eea;
            padding-left: 25px;
        }

        .dropdown-item.selected {
            background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
            color: #667eea;
            font-weight: 600;
        }

        /* Scrollbar styling for dropdowns */
        .selector-dropdown::-webkit-scrollbar {
            width: 8px;
        }

        .selector-dropdown::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .selector-dropdown::-webkit-scrollbar-thumb {
            background: #667eea;
            border-radius: 10px;
        }

        .selector-dropdown::-webkit-scrollbar-thumb:hover {
            background: #5568d3;
        }

        /* Tarot Card Display */
        .tarot-card-display {
            background: linear-gradient(135deg, #c5c8ca 0%, #edf2f7 100%);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
        }

        .card-image-container {
            
            max-width: 225px;
            margin: 0 auto 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            
        }

        .card-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .card-placeholder {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 20px;
            font-size: 1.5em;
            border-radius: 12px;
        }

        .card-title {
            font-size: 2.5em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .card-subtitle {
            font-size: 1.2em;
            color: #718096;
            margin-bottom: 30px;
            font-style: italic;
        }

        .card-content {
            text-align: left;
            max-width: 700px;
            margin: 0 auto;
        }

        .content-section {
            margin-bottom: 25px;
        }

        .section-title {
            font-size: 1.4em;
            color: #2d3748;
            margin-bottom: 10px;
            font-weight: 600;
            border-bottom: 2px solid #667eea;
            padding-bottom: 8px;
        }

        .section-text {
            color: #4a5568;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px;
        }

        .keyword {
            background: #667eea;
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 500;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #718096;
        }

        .empty-state-icon {
            font-size: 4em;
            margin-bottom: 20px;
        }

        .empty-state-text {
            font-size: 1.3em;
            color: #4a5568;
        }

        /*Astrology page*/


        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
            padding: 10px 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dropdown-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            min-width: 250px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-section {
            padding: 10px 0;
        }

        .dropdown-section:not(:last-child) {
            border-bottom: 1px solid #e2e8f0;
        }

        .dropdown-title {
            padding: 10px 20px;
            font-size: 0.85em;
            font-weight: 700;
            color: #667eea;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.2s;
        }

        .dropdown-menu a:hover {
            background: #f7fafc;
            color: #667eea;
            padding-left: 25px;
        }

        .dropdown-menu .featured {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #92400e;
            font-weight: 600;
            margin: 10px;
            border-radius: 8px;
        }

        .dropdown-menu .featured:hover {
            background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
            transform: scale(1.02);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #4a5568;
            margin: 3px 0;
        }

        /* Main Container */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            color: white;
            margin: 10px 0 10px;
        }

        .header h1 {
            font-size: 2em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .header-dark{
            font-size: 4em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            color:#2d3748
        }
        .header p {
            font-size: 1.5em;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* CTA Card */
        .cta-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 3px solid #fcd34d;
        }

        .book-btn {
            display: block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }

        .section-title {
            font-size: 2em;
            color: #2d3748;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 700;
        }

        /* Grid Container */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }

        .grid-item {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
            cursor: pointer;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            border-color: #667eea;
        }

        .item-icon {
            font-size: 3em;
            margin-bottom: 10px;
            color: #667eea;
        }
        .item-icon img{
            max-width: 100%;
            border-radius: 25px;
        }
        .item-name {
            font-weight: 700;
            color: #2d3748;
            font-size: 1.1em;
            margin-bottom: 5px;
        }

        .item-dates {
            font-size: 0.85em;
            color: #718096;
        }

        .item-desc {
            font-size: 0.9em;
            color: #718096;
            font-style: italic;
        }

        /* Footer */
        .footer {
            background: rgba(0,0,0,0.2);
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .navbar-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                margin-top: 10px;
            }

            
            .header-dark{
                font-size: 2em;
                color:#2d3748
            }
            .grid-container {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            .hero p {
                font-size: 1.5em;
            }
            .header-card{
                flex-direction: column;
            }
            .profile-section{
                flex-direction: column;
            }
           
    }
        /* About Profile Section */
        .profile-section {
            display: flex;
            
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }

        .profile-image {
            width: 25%;
            min-width: 200px;

            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5em;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .profile-content {
            flex: 1;
        }

        .profile-title {
            font-size: 2em;
            color: #2d3748;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .profile-subtitle {
            font-size: 1.2em;
            color: #667eea;
            margin-bottom: 20px;
            font-style: italic;
        }

        .profile-text {
            color: #4a5568;
            line-height: 1.8;
            font-size: 1.05em;
        }

        /* Content Section */
        .content-section {
            margin-bottom: 35px;
        }

        .section-title {
            font-size: 1.8em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 700;
            border-bottom: 3px solid #667eea;
            padding-bottom: 10px;
        }

        .section-text {
            color: #4a5568;
            line-height: 1.8;
            font-size: 1.05em;
            margin-bottom: 15px;
        }

        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .specialty-item {
            background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border-left: 4px solid #667eea;
        }

        .specialty-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .specialty-name {
            font-weight: 600;
            color: #2d3748;
            font-size: 1.1em;
        }
         /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-top: 40px;
        }

        .cta-title {
            color: #92400e;
            font-size: 1.8em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cta-text {
            color: #78350f;
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: transform 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .info-item {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-radius: 12px;
        }

        .info-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #667eea;
        }

        .info-label {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .info-value {
            color: #4a5568;
        }

        .info-value a {
            color: #667eea;
            text-decoration: none;
            padding: 0 10px;

        }

        .info-value a:hover {
            text-decoration: underline;
        }

        .section-title {
            font-size: 1.8em;
            color: #2d3748;
            margin-bottom: 20px;
            font-weight: 700;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1em;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }
        /*services page */
         .intro-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            text-align: center;
        }

        .intro-text {
            color: #4a5568;
            font-size: 1.1em;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .service-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        .service-icon img{
            max-width: 150px;
            
            border-radius: 50%;
        }

        .service-title {
            font-size: 1.8em;
            font-weight: 700;
            color: #2d3748;
            text-align: center;
            margin-bottom: 15px;
        }

        .service-description {
            color: #4a5568;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 20px;
            flex: 1;
        }

        .service-price {
            font-size: 1.5em;
            font-weight: 700;
            color: #667eea;
            text-align: center;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .service-features li {
            color: #4a5568;
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .service-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .book-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            border: none;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            text-align: center;
        }

        .book-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }

        /* Note Card */
        .note-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            text-align: center;
        }

        .note-title {
            color: #92400e;
            font-size: 1.3em;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .note-text {
            color: #78350f;
            line-height: 1.7;
        }
.home-logo{

        max-width: 30%;
        min-width: 200px;
        }

.header-logo{
    max-width: 200px;
    max-height: 55px;
    
}
/*planets and signs pages*/
 /* Back Button */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.95);
            color: #667eea;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 20px;
            transition: transform 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .back-button:hover {
            transform: translateX(-5px);
        }

        /* Header Card */
        .header-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            text-align: center;
            display: flex;
            gap: 10%;
            
            
        }
        .symbol{
           max-width: 400px;
           min-width: 150px;
          
           width: 80%;
           border-radius: 30%;
        }
        
       .page-title{
        font-size: 5em;
        text-align: center;
        
       }
        

        .page-subtitle {
            font-size: 1.4em;
            color: #718096;
            font-style: italic;
        }

        /* Content Card */
        .content-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .content-section {
            margin-bottom: 35px;
        }

        .content-section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 1.75em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 700;
            border-bottom: 3px solid #667eea;
            padding-bottom: 10px;
        }

        .section-content {
            font-size: 1.05em;
            color: #4a5568;
            line-height: 1.8;
        }

        .section-content p {
            margin-bottom: 15px;
        }

        .section-content ul {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        .section-content li {
            margin-bottom: 8px;
        }

        /* Key Points Box */
        .key-points {
            background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
            border-left: 4px solid #667eea;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .key-points h4 {
            color: #2d3748;
            margin-bottom: 12px;
            font-size: 1.2em;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-top: 40px;
        }

        .cta-title {
            color: #92400e;
            font-size: 1.8em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cta-text {
            color: #78350f;
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: transform 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }

        /* Footer */
        .footer {
            background: rgba(0,0,0,0.2);
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

            .header-card, .content-card {
                padding: 25px;
            }
        