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

body {
    color: green;
    line-height: 1.6;
    font-size: 15px;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    background-color: black;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #444;
}

header {
    padding: 25px 0;
}

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

.logo {
    font-size: 1.5rem;
    color: yellow;
}

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

nav a {
    text-decoration: none;
    color: #777;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
}

.hero {
    text-align: center;
    padding: 70px 0 60px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #666;
}

.hero p {
    color: #888;
    margin-bottom: 30px;
}

.stats {
    padding: 50px 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 120px;
    text-align: center;
}

.stat-item h2 {
    font-size: 4rem;
    font-weight: 100; 
    color: #ccc;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
}

.feature-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.philosophy {
    text-align: center;
    padding: 90px 0;
}

.philosophy h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #888;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.4;
}

.philosophy p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.85rem;
    color: #777;
}

.different-section {
    background-color: white;
    padding: 80px 0;
}

.different-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 60px;
}

.diff-content {
    display: flex;
    gap: 60px;
}

.diff-col {
    flex: 1;
    font-size: 0.85rem;
    color: #555;
}

.diff-col ul {
    list-style: none;
    margin-top: 20px;
}

.diff-col ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.diff-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.process {
    padding: 100px 0;
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #999;
}

.process-subtitle {
    margin-bottom: 70px;
    font-size: 0.9rem;
    color: #777;
}

.process-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.card {
    width: 230px;
    text-align: left;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: -25px; 
    position: relative;
    z-index: 2;}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: yellow;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    border: 3px solid #ffffffe5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #000;
    padding: 40px 10px 20px; 
    text-align: center;
}

.card-header h3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
}

.card-body {
    background-color: #f9f9f9;
    padding: 20px 20px 40px;
    min-height: 160px;
}

.card-body ul {
    list-style: none;
    font-size: 0.75rem;
    color: #666;
}

.card-body ul li {
    margin-bottom: 5px;
}

.card-body ul li::before {
    content: "• ";
    color: #ccc;
}

.learn-more-btn {
    padding: 15px 50px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .nav-container, .stats-container, .diff-content, .process-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin: 20px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stat-item h2 {
        font-size: 3rem;
    }
}