/* Base Styles */
:root {
    --primary-color: #8a6fbf;
    --primary-light: #a98eca;
    --primary-dark: #6e57aa;
    --secondary-color: #ebd8b7;
    --accent-color: #d4af37; /* Gold */
    --text-color: #333333;
    --text-light: #6e7179;
    --background-color: #ffffff;
    --background-alt: #f9f6ff;
    --shadow: 0 10px 30px rgba(138, 111, 191, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a; /* Darker text color */
    line-height: 1.7;
    background-color: var(--background-color);
    font-weight: 400; /* Increased from 300 to 400 */
    font-size: 1.05rem; /* Increased base font size */
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    font-weight: 700; /* Increased from 600 to 700 */
    color: #121212; /* Darker heading color */
}

p {
    margin-bottom: 1.2rem;
    font-weight: 500; /* Bolder paragraph text */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(138, 111, 191, 0.1);
}

.logo h1 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
    font-weight: 700;
}

.logo p {
    font-size: 1rem;
    color: #505050; /* Darker subtitle color */
    margin-bottom: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: #333333; /* Darker menu text */
    font-weight: 600; /* Bolder menu text */
    position: relative;
    text-transform: uppercase;
    font-size: 1rem; /* Larger menu text */
    letter-spacing: 1px;
}

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(138, 111, 191, 0.05), rgba(212, 175, 55, 0.05));
    padding: 5rem 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #4a4a4a; /* Darker subtitle */
    font-weight: 500;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    letter-spacing: 1px;
}

.primary-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 111, 191, 0.2);
}

.telegram-icon {
    width: 36px;
    height: 36px;
    margin-right: 15px;
    object-fit: contain;
}

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

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

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--accent-color);
    margin: 0.5rem auto 0;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #333333;
    font-weight: 500;
}

.about-text ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2rem;
}

.about-text ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
}

.about-text ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Approach Section */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--background-alt);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(138, 111, 191, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 111, 191, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.card-icon svg {
    color: white;
    width: 30px;
    height: 30px;
}

.card h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 700;
}

.card p {
    font-size: 1.1rem;
    color: #333333;
    font-weight: 500;
}

.specialties {
    text-align: center;
    margin-top: 4rem;
}

.specialties h3 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag {
    background: var(--background-alt);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(138, 111, 191, 0.2);
    font-weight: 600;
}

.tag:hover {
    background: var(--primary-light);
    color: white;
    transform: scale(1.05);
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, rgba(138, 111, 191, 0.08), rgba(212, 175, 55, 0.08));
    padding: 7rem 0;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 50px rgba(138, 111, 191, 0.05);
}

.consultation::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.consultation-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.consultation-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    font-weight: 500;
    color: #333333;
}

/* Telegram Button Styling */
.telegram-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto 4rem;
    position: relative;
    padding: 20px;
}

.telegram-button-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 100%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.telegram-button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 50px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(138, 111, 191, 0.3);
    text-decoration: none;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
    position: relative;
}

.telegram-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--accent-color);
    border-radius: 52px;
    pointer-events: none;
    z-index: -1;
}

.telegram-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 111, 191, 0.4);
    background-color: var(--primary-dark);
}

.telegram-button:hover::before {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.telegram-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 25px;
    width: 120px;
    height: 120px;
}

.telegram-icon-img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.telegram-text {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    text-align: left;
}

.telegram-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.telegram-username {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.consultation-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
}

.feature svg {
    color: var(--accent-color);
    margin-bottom: 1rem;
    width: 28px;
    height: 28px;
}

.feature p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.1rem;
    color: #333333;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.footer-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-content a:hover {
    color: var(--accent-color);
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
}

.copyright p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .consultation-features {
        gap: 2rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .telegram-button {
        flex-direction: column;
        max-width: 320px;
    }
    
    .telegram-icon-container {
        width: 100%;
        height: auto;
        border-radius: 50px 50px 0 0;
        padding: 25px;
    }
    
    .telegram-text {
        padding: 20px 15px;
        text-align: center;
        width: 100%;
    }
    
    .telegram-title {
        font-size: 1.8rem;
    }
    
    .telegram-username {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .primary-cta {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
    
    .consultation::before, 
    .hero::before {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}