body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0B0B0B;
    color: #fff;
}

.hero {
    height: 100vh;
    background: url('hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 60px;
    color: #D4AF37;
}

.btn-primary {
    background: #D4AF37;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
}

.btn-secondary {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 15px 30px;
}

section {
    padding: 80px 20px;
    text-align: center;
}

.method .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}