* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #888;
    background-color: #ffffff;
    line-height: 1.8;
    font-weight: 300;
}

h1, h2, h3 {
    color: #555;
    font-weight: 300;
    margin-bottom: 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    gap: 80px;
    border-bottom: 1px solid #f9f9f9;
}

.logo img {
    height: 90px;
    width: auto;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    padding: 0 20px;
    border-right: 1px solid #ccc;
}

.nav-links li:last-child {
    border-right: none;
}

.nav-links a {
    text-decoration: none;
    color: #aaa;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #d1a3a4; 
}

.section-padding {
    padding: 160px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 60px 80px;
    border-radius: 5px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #444;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.split-section {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 100px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.split-text {
    flex: 1.5;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #555;
}

.split-text p {
    margin-bottom: 25px;
    font-size: 15px;
}

h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    margin-bottom: 30px;
}

ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d1a3a4;
}

.about-image {
    flex: 0.5;
    text-align: center;
}

.about-image img {
    width: 200px;
    border-radius: 50%;
}

.certificates {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.certificates img {
    width: 280px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 4px;
}

.pricing-list {
    max-width: 600px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.price-name {
    color: #555;
}

.price-value {
    color: #d1a3a4;
    font-weight: 400;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #aaa;
    margin-top: 50px;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .hero-content {
        padding: 40px 20px;
        margin: 0 20px;
        margin-top: 120px;
    }
    .split-section {
        flex-direction: column;
        gap: 40px;
    }
}