* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
color: #fff;
}

/* HERO */
.hero {
position: relative;
height: 100vh;
background: url('img/agegapdating.png') center/cover no-repeat;
}

.overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(7, 59, 76, 0.85);
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

.hero-content {
position: relative;
z-index: 2;
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
gap: 40px;
}

/* LOGO */
.logo img {
width: 350px;
}

/* TEXT */
.hero-text h1 {
font-size: 48px;
margin-bottom: 15px;
}

.hero-text p {
max-width: 450px;
line-height: 1.6;
}

/* SIGNUP BOX */
.signup-box {
background: rgba(0,0,0,0.7);
padding: 30px;
border-radius: 10px;
text-align: center;
width: 280px;
}

.signup-box h2 {
margin-bottom: 20px;
}

/* BUTTONS */
.btn {
display: block;
width: 100%;
padding: 12px;
margin: 10px 0;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 6px;
transition: 0.3s;
}

.primary {
background: #ef476f;
color: #fff;
}

.secondary {
background: #118ab2;
color: #fff;
}

.btn:hover {
opacity: 0.8;
}

/* STEPS */
.steps {
background: #073b4c;
padding: 60px 0;
text-align: center;
}

.steps-grid {
display: flex;
justify-content: space-between;
gap: 20px;
}

.step {
flex: 1;
}

.circle {
width: 60px;
height: 60px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: auto;
font-size: 20px;
margin-bottom: 15px;
}

/* FOOTER */
.footer {
background: #052c39;
padding: 50px 0 20px;
color: #fff;
}

.footer-grid {
display: flex;
justify-content: space-between;
gap: 30px;
flex-wrap: wrap;
}

.footer-brand img {
width: 200px;
margin-bottom: 15px;
}

.footer-brand p {
max-width: 250px;
font-size: 14px;
line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
margin-bottom: 15px;
font-size: 16px;
}

.footer-links ul {
list-style: none;
}

.footer-links ul li {
margin-bottom: 8px;
}

.footer-links a {
color: #ccc;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.footer-links a:hover {
color: #fff;
}

.social-icons a {
color: #fff;
margin-right: 10px;
font-size: 18px;
transition: 0.3s;
}

.social-icons a:hover {
color: #ef476f;
}

.footer-bottom {
text-align: center;
margin-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 15px;
font-size: 13px;
color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.hero-content {
flex-direction: column;
text-align: center;
}

.signup-box {
width: 100%;
}

.steps-grid {
flex-direction: column;
}

.footer-grid {
flex-direction: column;
text-align: center;
}
}