* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    /* color: #111827; */
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #7B2FF7;
}

.section-subtitle {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.section-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    background-color: #9F44D3;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #9F44D3;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: white;
    color: #7B2FF7;
}

.icon {
    margin-left: 0.5rem;
}

.icon-small {
    margin-left: 0.25rem;
}
header{
    padding-bottom: 30px;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.header-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
    }
}
.data {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7B2FF7;
}
.data img{
    width: 40%;
}
@media (min-width: 768px) {
    .data {
        margin-bottom: 0;
    }
    .data img{
        width: 32%;
    }
}
nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
nav a{
    text-decoration: none;
    color: black;
}
 nav li{
    padding: 0.25rem 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.nav-active {
    border-bottom: 2px solid #2563eb;
    color: #1e40af;
    
}

li:hover:not(.nav-active) {
    border-bottom: 2px solid #93c5fd;
    color: #1e40af;
}
.hero {
    background: linear-gradient(to right, #7B2FF7, #9F44D3);
    color: white;
    padding: 4rem 0 0 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 0 0;
    }
    nav ul{
        flex-wrap: nowrap;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
    }
}

.hero-content {
    width: 100%;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-content {
        width: 50%;
        margin-bottom: 0;
    }
}
.hero h1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}
.hero img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;

}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-buttons a{
    text-decoration: none;
}
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-image {
        width: 50%;
    }
}
.achievement {
    padding: 4rem 0;
    background-color: white;
}
.achievement-month{
    display: flex;
    flex-direction: column;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .achievement-month {
        flex-direction: row;
    }
}

.left {
    padding: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .left {
        width: 50%;
        padding: 3rem;
    }
}
 .left a{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
}
.link-button {
    display: flex;
    align-items: center;
    color:   #9F44D3;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.link-button:hover {
    color: #1e3a8a;
}
.right {
    background-color: #7B2FF7;
    color: white;
    padding: 2rem;
    width: 100%;
    gap: 20px;
}

@media (min-width: 768px) {
    .right {
        width: 50%;
        padding: 3rem;
    }
}

.right h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.timeline {
    list-style: none;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    background-color: #9F44D3;
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.timeline-icon svg {
    width: 1rem;
    height: 1rem;
}

.content {
    flex: 1;
}

.date {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.journey {
    padding: 4rem 0;
    background-color: #f9fafb;
    border-image-source: none;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.podcast-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .podcast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.podcast-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.podcast-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.podcast-thumbnail {
    position: relative;
}

.thumbnail-placeholder {
    aspect-ratio: 16/ 8;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.thumbnail-placeholder img{
    width: 100%;
    aspect-ratio: 16/ 8;
    object-fit: cover;
}
.thumbnail-placeholder a{
    width: 100%;
    aspect-ratio: 16/ 8;

}
.thumbnail-placeholder svg {
    width: 4rem;
    height: 4rem;
    color: #1e40af;
    opacity: 0.8;
    position: absolute;
    right: 50%;
    top: 50%;
}
.podcast-content {
    padding: 1.5rem;
}

.podcast-content h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.podcast-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.podcast-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.podcast-footer a{
    text-decoration: none;
}
.podcast-link {
    display: flex;
    align-items: center;
    color:  #7B2FF7;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.podcast-link:hover {
    color: #7B2FF7;
}

.podcast-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}
.view {
    text-align: center;
    margin-top: 3rem;
}
.mission{
    padding: 5rem 0;
    background-color: #f0f5ff; 
}

.mission-vision-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .mission-vision-card {
        flex-direction: row;
    }
}

.mission-vision-content {
    padding: 2.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .mission-vision-content {
        width: 60%;
    }
}

.vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .vision {
        grid-template-columns: repeat(2, 1fr);
    }
}
.mission-item {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #9F44D3;
    border-right: 4px solid #7B2FF7;
}

.mission-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7B2FF7;
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1rem;
    color: #4b5563;
}
.impact {
    background: linear-gradient(to bottom right, #9F44D3, #7B2FF7);
    color: white;
    padding: 2.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .impact {
        width: 40%;
    }
}

.impact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.impact-item {
    text-align: center;
}

.impact-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.impact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.impact-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.impact-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.quote {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

blockquote::before {
    content: '"';
    font-size: 2.5rem;
    position: absolute;
    left: 0;
    top: -1rem;
    color: rgba(255, 255, 255, 0.3);
}

.quote p {
    text-align: right;
    font-weight: 600;
    font-size: 0.875rem;
}
.datahub {
    padding: 4rem 0;
    background-color: white;
}

.data-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .data-grid {
        flex-direction: row;
    }
}

.data-left {
    width: 100%;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .data-left {
        width: 50%;
        margin-bottom: 0;
        padding-right: 4rem;
    }
}

.data-right {
    width: 100%;
}

@media (min-width: 768px) {
    .data-right {
        width: 50%;
    }
}
.mission-card {
    background-color: hsla(199, 28%, 29%, 0.047);
    border-radius: 0.75rem;
    padding: 2rem;
}
.data-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #7B2FF7;
}

.data-right p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.data-right p:last-child {
    margin-bottom: 0;
}
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-weight: 700;
    margin-right: 1rem;
}

.author h4 {
    font-weight: 700;
}
.testimonial-content {
    color: #4b5563;
}
.new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.get-in-touch {
    background: linear-gradient(135deg, #8231D3 0%, #6B1BB0 100%);
    padding: 60px 0;
    color: white;
    border-radius: 17px;
    position: relative;
    overflow: hidden;
    line-height: 1.0;
    font-family: 'Inter', sans-serif;
}

.get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info .description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.email-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.email-container:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.email-icon {
    background: #4ECDC4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.email-address {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.email-address a{
    color: white;
    text-decoration: none;
}
.email-button {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-decoration: none;
}

.email-button:hover {
    background: #3DBDB5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.email-button i {
    margin-right: 8px;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.response-time i {
    margin-right: 8px;
    color: #4ECDC4;
}

.social-connect {
    margin-top: 30px;
}

.social-connect h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.home-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.home-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-icons a:hover {
    background: #4ECDC4;
    transform: translateY(-3px);
}

.footer {
    background: linear-gradient(180deg, #19216C 0%, #0F1444 100%);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8231D3, #4ECDC4);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #8231D3, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter {
    margin-top: 20px;
}

.newsletter h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-form a{
    color: white;
    text-decoration: none;
}
.newsletter-form button:hover {
    background: #3DBDB5;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4ECDC4;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
    color: #4ECDC4;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: #4ECDC4;
    transform: translateY(-3px);
}

.back-to-top {
    position: absolute;
    right: 30px;
    bottom: 110px;
    background: #8231D3;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-decoration: none;
}

.back-to-top:hover {
    background: #6B1BB0;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 32px;
    }
    
    .contact-info .description {
        font-size: 16px;
    }
    
    .email-container {
        padding: 15px 20px;
    }
    
    .email-address {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .email-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .email-icon {
        margin-right: 0;
    }
}