 /* ALl styles for age calculator */
 body {
     font-family: 'Arial', sans-serif;
     margin: 0;
     padding: 0;
     background-color: #f8f9fa;
     color: #333;
     line-height: 1.6;
 }

 .tool-hero {
     background: linear-gradient(45deg, var(--primary), #ff8a70);
     color: white;
     padding: 4rem 1rem;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .tool-content {
     max-width: 1000px;
     margin: -50px auto 3rem;
     padding: 0 1rem;
     position: relative;
     z-index: 1;
 }

 .calculator-tool {
     background: white;
     padding: 2rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px var(--shadow);
     margin-bottom: 2rem;
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     color: #555;
     font-weight: 500;
 }

 .form-group input[type="date"],
 .form-group input[type="time"],
 .form-group select {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
     box-sizing: border-box;
 }

 .form-group input[type="date"]:focus,
 .form-group input[type="time"]:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
 }

 .form-row {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .form-col {
     flex: 1;
     min-width: 200px;
 }

 .checkbox-group {
     margin-top: 1.5rem;
 }

 .checkbox-option {
     display: flex;
     align-items: center;
     margin-bottom: 0.5rem;
 }

 .checkbox-option input[type="checkbox"] {
     margin-right: 0.5rem;
 }

 .calculate-btn {
     background: var(--primary);
     color: white;
     border: none;
     padding: 1rem 2rem;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 100%;
     margin-top: 1rem;
 }

 .calculate-btn:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
 }

 .results-container {
     display: none;
 }

 .tabs-container {
     margin-top: 2rem;
 }

 .tabs {
     display: flex;
     background-color: #f8f9fa;
     border-radius: 8px;
     overflow: hidden;
     margin-bottom: 1rem;
 }

 .tab {
     flex: 1;
     text-align: center;
     padding: 1rem 0.5rem;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 500;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     font-size: 0.9rem;
 }

 @media (min-width: 768px) {
     .tab {
         font-size: 1rem;
         padding: 1rem;
     }
 }

 .tab.active {
     background-color: white;
     color: var(--primary);
     border-bottom: 3px solid var(--primary);
 }

 .tab-content {
     display: none;
     padding: 1.5rem;
     background: white;
     border-radius: 8px;
     box-shadow: 0 2px 8px var(--shadow);
 }

 .tab-content.active {
     display: block;
 }

 .result-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .result-card {
     background: var(--light-bg);
     padding: 1.2rem;
     border-radius: 8px;
     text-align: center;
     transition: all 0.3s ease;
 }

 .result-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px var(--shadow);
 }

 .result-card h3 {
     color: var(--primary);
     margin-bottom: 0.5rem;
     font-size: 1rem;
 }

 .result-card p {
     color: #444;
     font-size: 1.5rem;
     font-weight: bold;
     margin-bottom: 0;
 }

 .result-card .subtitle {
     font-size: 0.85rem;
     color: var(--text-light);
     margin-top: 0.5rem;
 }

 .detailed-list {
     list-style: none;
     padding: 0;
 }

 .detailed-list li {
     display: flex;
     justify-content: space-between;
     margin-bottom: 0.8rem;
     padding-bottom: 0.8rem;
     border-bottom: 1px dashed #ddd;
 }

 .detailed-list li:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .detailed-list .label {
     font-weight: 500;
     color: #555;
 }

 .detailed-list .value {
     font-weight: 600;
     color: #333;
 }

 .milestone-card {
     background: var(--light-bg);
     border-radius: 8px;
     padding: 1.2rem;
     margin-bottom: 1rem;
     border-left: 4px solid var(--blue);
 }

 .milestone-date {
     font-weight: 600;
     color: var(--blue);
     margin-bottom: 0.25rem;
 }

 .milestone-title {
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .milestone-desc {
     color: var(--text-light);
     font-size: 0.9rem;
 }

 .milestone-card.past {
     border-left-color: var(--green);
 }

 .milestone-card.past .milestone-date {
     color: var(--green);
 }

 .milestone-card.future {
     border-left-color: var(--purple);
 }

 .milestone-card.future .milestone-date {
     color: var(--purple);
 }

 .milestone-card.upcoming {
     border-left-color: var(--yellow);
 }

 .milestone-card.upcoming .milestone-date {
     color: var(--yellow);
 }

 .planet-card {
     display: flex;
     align-items: center;
     padding: 1rem;
     background: var(--light-bg);
     border-radius: 8px;
     margin-bottom: 1rem;
 }

 .planet-icon {
     font-size: 2rem;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 1rem;
 }

 .planet-info {
     flex: 1;
 }

 .planet-name {
     font-weight: 600;
     margin-bottom: 0.25rem;
 }

 .planet-age {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--primary);
 }

 .planet-desc {
     font-size: 0.85rem;
     color: var(--text-light);
     margin-top: 0.25rem;
 }

 .zodiac-section {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 @media (min-width: 768px) {
     .zodiac-section {
         flex-direction: row;
     }
 }

 .zodiac-sign {
     flex: 1;
     text-align: center;
     padding: 1.5rem;
     background: var(--light-bg);
     border-radius: 8px;
 }

 .zodiac-icon {
     font-size: 3rem;
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .zodiac-name {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .zodiac-dates {
     color: var(--text-light);
     font-style: italic;
     margin-bottom: 1rem;
 }

 .zodiac-traits {
     text-align: left;
     margin-top: 1rem;
 }

 .zodiac-traits h4 {
     color: var(--primary);
     margin-bottom: 0.5rem;
 }

 .traits-list {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     margin-bottom: 1rem;
 }

 .trait-tag {
     background: rgba(255, 71, 87, 0.1);
     color: var(--primary);
     padding: 0.25rem 0.5rem;
     border-radius: 4px;
     font-size: 0.85rem;
 }

 .biorhythm-container {
     margin-top: 1.5rem;
 }

 .biorhythm-legend {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin-top: 1rem;
     flex-wrap: wrap;
 }

 .legend-item {
     display: flex;
     align-items: center;
     font-size: 0.9rem;
 }

 .legend-color {
     width: 15px;
     height: 15px;
     border-radius: 50%;
     margin-right: 0.5rem;
 }

 .stats-section {
     margin-top: 1.5rem;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 1rem;
     margin-top: 1rem;
 }

 .stat-card {
     background: var(--light-bg);
     padding: 1rem;
     border-radius: 8px;
     text-align: center;
 }

 .stat-value {
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--primary);
     margin-bottom: 0.25rem;
 }

 .stat-label {
     font-size: 0.85rem;
     color: var(--text-light);
 }

 .day-info {
     background: var(--light-bg);
     padding: 1.2rem;
     border-radius: 8px;
     margin-bottom: 1rem;
 }

 .day-title {
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .share-buttons {
     display: flex;
     gap: 0.5rem;
     margin-top: 1.5rem;
     justify-content: center;
 }

 .share-button {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     color: white;
     transition: all 0.3s ease;
 }

 .share-button:hover {
     transform: translateY(-3px);
 }

 .share-facebook {
     background: #3b5998;
 }

 .share-twitter {
     background: #1da1f2;
 }

 .share-whatsapp {
     background: #25d366;
 }

 .share-email {
     background: #ea4335;
 }

 /* About Section */
 .about-section {
     margin-top: 2rem;
 }

 .about-section h2 {
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .about-section p {
     color: var(--text-light);
     margin-bottom: 1rem;
 }

 .features-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
     margin-top: 2rem;
 }

 .feature-item {
     background: white;
     padding: 1.5rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px var(--shadow);
     transition: all 0.3s ease;
 }

 .feature-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px var(--shadow);
 }

 .feature-icon {
     font-size: 2rem;
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .feature-title {
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #444;
 }

 .feature-desc {
     color: var(--text-light);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .tool-hero h1 {
         font-size: 2rem;
     }

     .calculator-tool {
         padding: 1.5rem;
     }

     .tabs {
         flex-wrap: wrap;
     }

     .tab {
         flex: 1 0 33.333%;
     }

     .result-cards {
         grid-template-columns: 1fr 1fr;
     }

     .features-list {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 480px) {
     .result-cards {
         grid-template-columns: 1fr;
     }

     .tab {
         flex: 1 0 50%;
     }
 }