/* Page Headers */
.page-header {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    background: #161619;
    position: relative;
    padding: 100px 0;
}

.page-header:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-header .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 24px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

/* About Page */
.about-intro {
    padding: 100px 0;
}

.about-intro .section-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: #fff;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.about-intro h6 {
    color: #75dab4;
    font-size: 24px;
    margin-bottom: 10px;
}

.about-intro small {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

/* Services Page */
.services-grid {
    padding: 100px 0;
}

.service-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: #75dab4;
}

.service-box figure {
    margin-bottom: 30px;
}

.service-box figure img {
    height: 60px;
}

.service-box h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box ul li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    padding-right: 25px;
    position: relative;
    font-size: 16px;
}

.service-box ul li:before {
    content: "•";
    color: #75dab4;
    position: absolute;
    right: 0;
    font-size: 20px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.process .section-title {
    margin-bottom: 60px;
    color: #fff;
    font-size: 48px;
}

.process-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    margin-bottom: 30px;
}

.process-box span {
    font-size: 48px;
    color: #75dab4;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    font-family: 'Heebo', sans-serif;
}

.process-box h6 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.process-box p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-box {
    background: #75dab4;
    padding: 100px 0;
    text-align: center;
    margin-top: 100px;
}

.cta-box h4 {
    color: #161619;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    color: #161619;
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-box .custom-button {
    display: inline-block;
    padding: 20px 50px;
    background: #161619;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-box .custom-button:hover {
    background: #fff;
    color: #161619;
    text-decoration: none;
} 