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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #1d1d1f;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f5f5f7;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: #007AFF;
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #007AFF;
}

nav ul li a.active {
    color: #007AFF;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007AFF;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1d1d1f;
}

/* Page Content */
.page-content {
    padding-top: 100px;
    min-height: 80vh;
}

.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background-color: #f5f5f7;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #007AFF, #5856D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 20px;
    color: #86868b;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #86868b;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Home Page */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    background-color: #f5f5f7;
    margin-top: 60px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #007AFF, #5856D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 24px;
    color: #86868b;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    background-color: #007AFF;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid #007AFF;
}

.cta-button:hover {
    background-color: transparent;
    color: #007AFF;
}

/* Packages Section */
.packages {
    padding: 80px 0;
}

.package-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.package-card {
    background-color: #f5f5f7;
    border-radius: 20px;
    padding: 40px 30px;
    width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e5e7;
}

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

.package-card.popular {
    border: 2px solid #007AFF;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007AFF;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.package-price {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1d1d1f;
}

.package-price span {
    font-size: 16px;
    color: #86868b;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
}

.package-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007AFF;
    font-weight: bold;
}

.package-button {
    display: block;
    text-align: center;
    background-color: #007AFF;
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.package-button:hover {
    background-color: #0056CC;
}

/* Service Pages */
.service-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    height: 400px;
    background-color: #f5f5f7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    padding: 20px;
}

.service-image-placeholder {
    font-size: 120px;
    color: #007AFF;
    opacity: 0.7;
}

.image-caption {
    text-align: center;
    color: #86868b;
    font-style: italic;
    margin-top: 10px;
    font-size: 14px;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #f5f5f7;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #007AFF;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    font-weight: 600;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-role {
    color: #007AFF;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    color: #86868b;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details div {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-details i {
    font-size: 20px;
    color: #007AFF;
    margin-right: 15px;
    width: 30px;
}

.contact-form {
    flex: 1;
    background-color: #f5f5f7;
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background-color: white;
}

/* Footer */
footer {
    background-color: #1d1d1f;
    color: #f5f5f7;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #007AFF;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #424245;
    color: #86868b;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .page-hero h1 {
        font-size: 42px;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px;
        display: none;
        flex-direction: column;
        border-top: 1px solid #f5f5f7;
        z-index: 999;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .mobile-nav li {
        margin: 10px 0;
    }
    
    .mobile-nav li a {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .package-card {
        width: 100%;
        max-width: 350px;
    }
}