/* Base Styles */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --text-color: #333;
    --light-color: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #33ffcc 0%, #c3cfe2 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.divider {
    height: 3px;
    width: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

/* Content Styles */
.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.info-card, .goals-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover, .goals-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-card h2, .goals-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-card p, .goals-card p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: inline-block;
}

/* Contact Styles */
.contact-section {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes grow {
    0% {
        width: 0;
    }
    100% {
        width: 150px;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-pop-in {
    animation: pop-in 0.8s ease-out forwards;
}

.animate-grow {
    animation: grow 1s ease-out forwards;
    animation-delay: 0.3s;
}

.animate-fade-in {
    opacity: 0;
    animation: fade-in 1s ease-out forwards;
    animation-delay: 0.8s;
}

.animate-slide-up {
    opacity: 0;
    animation: slide-up 1s ease-out forwards;
    animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .info-section {
        flex-direction: column;
    }
    
    .contact-links {
        flex-direction: column;
        
    }
    * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
       * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
