/*$Id$*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#b-container {
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    padding: 2rem 0;
}

.section {
    background: transparent;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section:nth-child(1) {
    animation-delay: 0.2s;
}

.section:nth-child(2) {
    animation-delay: 0.4s;
}

.section:nth-child(3) {
    animation-delay: 0.6s;
}

.section:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #20A9C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #20A9C7, #1C73B0);
    border-radius: 2px;
}

.section-content {
    background: linear-gradient(132.88deg, #000000 2.15%, #091035d1 27.93%, rgb(23 16 101 / 75%) 51.96%, hsl(220deg 73% 34% / 75%) 76.19%, hsl(205deg 73% 40% / 75%) 88.6%, hsl(191deg 72% 45% / 75%) 100%);;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .section-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
} */

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-text strong {
    color: #20A9C7;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(45deg, rgba(32, 169, 199, 0.1), rgba(28, 115, 176, 0.1));
    border-left: 4px solid #20A9C7;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1rem;
    text-align: center;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.goal-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #20A9C7, #1C73B0);
}

.goal-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(32, 169, 199, 0.3);
}

.goal-title {
    font-size: 1rem;
    font-weight: 600;
    color: #20A9C7;
    margin-bottom: 1rem;
}

.goal-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #20A9C7, #1C73B0);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(32, 169, 199, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(32, 169, 199, 0.4);
    background: linear-gradient(45deg, #1C73B0, #20A9C7);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1rem;
    }

    .section-content {
        padding: 1rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .goal-item {
        padding: 1rem;
    }
}
/*$Id$*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#b-container {
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    padding: 2rem 0;
}

.section {
    background: transparent;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section:nth-child(1) {
    animation-delay: 0.2s;
}

.section:nth-child(2) {
    animation-delay: 0.4s;
}

.section:nth-child(3) {
    animation-delay: 0.6s;
}

.section:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #20A9C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #20A9C7, #1C73B0);
    border-radius: 2px;
}

.section-content {
    background: linear-gradient(132.88deg, #000000 2.15%, #091035d1 27.93%, rgb(23 16 101 / 75%) 51.96%, hsl(220deg 73% 34% / 75%) 76.19%, hsl(205deg 73% 40% / 75%) 88.6%, hsl(191deg 72% 45% / 75%) 100%);;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .section-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
} */

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-text strong {
    color: #20A9C7;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(45deg, rgba(32, 169, 199, 0.1), rgba(28, 115, 176, 0.1));
    border-left: 4px solid #20A9C7;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1rem;
    text-align: center;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.goal-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #20A9C7, #1C73B0);
}

.goal-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(32, 169, 199, 0.3);
}

.goal-title {
    font-size: 1rem;
    font-weight: 600;
    color: #20A9C7;
    margin-bottom: 1rem;
}

.goal-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #20A9C7, #1C73B0);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(32, 169, 199, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(32, 169, 199, 0.4);
    background: linear-gradient(45deg, #1C73B0, #20A9C7);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1rem;
    }

    .section-content {
        padding: 1rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .goal-item {
        padding: 1rem;
    }
}