<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #1a2e35;
    --secondary: #ff4d4d;
    --accent: #3dd598;
    --light: #f5f5f5;
    --dark: #222831;
    --text: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: var(--primary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo svg {
    height: 40px;
    margin-right: 10px;
    fill: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 1.1rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/5.jpg') center/cover no-repeat;
    position: relative;
}
html{
    overflow-x: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 53, 0.9) 0%, rgba(26, 46, 53, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #2ab57d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--dark);
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.philosophy-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100px;
    background-color: white;
    bottom: -50px;
    left: -25%;
    border-radius: 50%;
}

.philosophy-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--accent);
    position: relative;
    z-index: 2;
}

.philosophy-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.philosophy-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.philosophy-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.read-more svg {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(5px);
}

/* Programs Section */
.programs {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    top: -150px;
    right: -150px;
}

.programs::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -100px;
}

.programs .section-title h2::after {
    background-color: var(--secondary);
}

.programs-container {
    position: relative;
    z-index: 2;
}

.program-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.program-tab {
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 1rem;
}

.program-tab.active {
    background-color: var(--secondary);
}

.program-content {
    display: none;
}

.program-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.program-card h3 svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    fill: var(--secondary);
}

.program-card p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.program-features {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.program-feature {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.program-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    margin-right: 10px;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
}

.program-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(61, 213, 152, 0.05);
    top: -200px;
    left: -200px;
    z-index: -1;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    padding: 0 30px;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.testimonial-author p {
    color: var(--text-light);
    font-style: italic;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.testimonial-nav-btn:hover svg {
    fill: white;
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    transition: all 0.3s ease;
}

/* Community Section */
.community {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.community-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.community-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.community-image-stack {
    position: relative;
    height: 500px;
}

.community-image-item {
    position: absolute;
    width: 70%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.community-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-image-item:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
}

.community-image-item:nth-child(2) {
    top: 50px;
    left: 100px;
    z-index: 2;
}

.community-image-item:nth-child(3) {
    top: 150px;
    left: 50px;
    z-index: 1;
}

.community-image-stack:hover .community-image-item:nth-child(1) {
    transform: translate(-30px, -30px) rotate(-5deg);
}

.community-image-stack:hover .community-image-item:nth-child(2) {
    transform: translate(30px, -15px) rotate(5deg);
}

.community-image-stack:hover .community-image-item:nth-child(3) {
    transform: translate(-15px, 30px) rotate(-3deg);
}

.community-content {
    flex: 1;
    min-width: 300px;
    padding: 0 2rem;
}

.community-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.community-content p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.community-stat {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.community-stat:hover {
    transform: translateY(-5px);
}

.community-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.community-stat p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text);
}

/* Membership Section */
.membership {
    position: relative;
    overflow: hidden;
}

.membership::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 77, 77, 0.05);
    bottom: -150px;
    right: -150px;
    z-index: -1;
}

.membership-container {
    max-width: 1000px;
    margin: 0 auto;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.membership-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.membership-header {
    padding: 2.5rem;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.membership-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.membership-header p {
    opacity: 0.8;
    font-weight: 300;
}

.membership-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-price span {
    font-size: 1rem;
    margin-left: 5px;
    opacity: 0.7;
    font-weight: 400;
}

.membership-features {
    padding: 2.5rem;
}

.membership-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.membership-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    margin-right: 15px;
}

.membership-feature p {
    margin: 0;
    color: #fff;
}

.membership-feature p{
    color: #000;
}

.membership-cta {
    padding: 0 2.5rem 2.5rem;
    text-align: center;
}

.membership-cta .btn {
    width: 100%;
}

/* Results Section */
.results {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    top: -200px;
    left: -200px;
}

.results-container {
    position: relative;
    z-index: 2;
}

.results-title {
    text-align: center;
    margin-bottom: 4rem;
}

.results-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.results-title p {
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.progress-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.progress-item {
    flex: 0 0 calc(33.333% - 30px);
    margin-bottom: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.progress-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-circle {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 0 auto 2rem;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
}

.progress-circle .background {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 10;
}

.progress-circle .progress {
    fill: none;
    stroke: var(--accent);
    stroke-width: 10;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1s ease;
}

.progress-circle .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.progress-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.progress-item p {
    opacity: 0.8;
    line-height: 1.6;
}

.results-cta {
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.results-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.results-cta p {
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Counter Section */
.counter-container {
    background-color: var(--accent);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.counter-title {
    margin-bottom: 3rem;
}

.counter-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.counter-title p {
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.counter-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #2ab57d;
}

/* Footer Section */
footer {
    background-color: var(--primary);
    padding: 5rem 0 0;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-logo {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    height: 35px;
    margin-right: 10px;
    fill: var(--accent);
}

.footer-about p {
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-links h3,
.footer-programs h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-programs h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links ul,
.footer-programs ul {
    list-style: none;
}

.footer-links ul li,
.footer-programs ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-programs ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-programs ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-contact p svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .program-features {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .progress-item {
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-btn {
        border-radius: 50px;
        padding: 15px 30px;
    }
}

/* Contact Section Styles */
.contact {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: rgba(61, 213, 152, 0.03);
    bottom: -250px;
    right: -250px;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 77, 77, 0.03);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding-right: 2rem;
}

.contact-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--accent);
}

.contact-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.form-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.form-decoration-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(61, 213, 152, 0.03);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 77, 77, 0.03);
    bottom: 50px;
    right: 30px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background-color: rgba(26, 46, 53, 0.03);
    bottom: -75px;
    left: -75px;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text);
    outline: none;
    position: relative;
    z-index: 2;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label,
.form-control:valid + label {
    top: -20px;
    font-size: 0.9rem;
    color: var(--accent);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23777' d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E") no-repeat;
    background-position: right center;
    background-size: 24px;
}

select.form-control:invalid {
    color: transparent;
}

select.form-control:valid {
    color: var(--text);
}

select.form-control option {
    color: var(--text);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.form-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.form-control:focus ~ .form-line::after {
    width: 100%;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.form-checkbox input {
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.contact-btn:hover svg {
    transform: translateX(5px);
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: var(--primary);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.map-info {
    color: white;
    max-width: 300px;
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-info p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-btn {
    background-color: var(--accent);
    color: var(--dark);
}

.map-btn:hover {
    background-color: white;
}

.map {
    position: relative;
    width: 100%;
    height: 100%;
}

.placeholder-map {
    width: 100%;
    height: 100%;
}

.placeholder-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles */
@media screen and (max-width: 991px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .map-overlay {
        width: 40%;
    }
}

@media screen and (max-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .map-overlay {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .map-container {
        height: auto;
    }
    
    .map {
        height: 300px;
    }
}

/* Animation for form focus */
@keyframes formFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 213, 152, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(61, 213, 152, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 213, 152, 0);
    }
}

.form-control:focus {
    animation: formFocus 1s ease;
}

/* Special hover effect for contact cards */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}


.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
}

.text-wrapper p{
    margin-bottom: 10px;
}</pre></body></html>