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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}
.nav {
    flex: 1;
    display: flex;
    position: relative;
    left: 200px;
}
.logo {
    width: 80px;
}

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

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-list a:hover {
    color: black;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 25px;
}

.hero-image img {
    width: 400px;
    border-radius: 10px;
}


.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    transition: 0.2s ease;
}

.primary {
    background-color: #333;
    color: white;
}

.primary:hover {
    background-color: black;
}

.secondary {
    border: 2px solid #333;
    color: #333;
}

.secondary:hover {
    background-color: #333;
    color: white;
}


.websites {
    text-align: center;
    
}

.website-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.website-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 40px;
}
.website-card a {
    display: block;
    text-align: center;
    font-family: Helvetica;
    color: #e60000;
    font-weight: 750;
}

.gallery {
    text-align: center;
}

.gallery-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.gallery-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    text-align: left;
}
.gallery-card a {
    display: block;
    text-align: center;
    font-family: Helvetica;
    color: #e60000;
    font-weight: 750;
}
.gallery-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.gallery-card h4 {
    margin: 15px 0 10px;
}

.cta {
    text-align: center;
}

.cta p {
    max-width: 600px;
    margin: 20px auto;
}

.footer {
    background-color: #eaeaea;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 80px auto 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer a {
    text-decoration: none;
    color: #333;
}

.footer-social img {
    width: 25px;
}
