* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f1ee;
    color: #3d2c28;
}

header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 50px;
    flex-wrap: wrap;
}

.content {
    max-width: 500px;
}

.content h1 {
    font-size: 60px;
    margin-bottom: 15px;
    color: #2b1d1a;
}

.content h2 {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #7b5b52;
}

.content p {
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5b4741;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: #5c4037;
    color: white;
}

.btn-primary:hover {
    background: #3d2c28;
}

.btn-secondary {
    border: 2px solid #5c4037;
    color: #5c4037;
}

.btn-secondary:hover {
    background: #5c4037;
    color: white;
}

.image-container img {
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
    transition: 0.4s;
}

.image-container img:hover {
    transform: scale(1.03);
}

section {
    padding: 80px 10%;
}

.title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #2b1d1a;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #5c4037;
}

footer {
  text-align: center;
  padding: 30px;
  background: #2b1d1a;
  color: white;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: #5c4037;
  transform: translateY(-4px);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 15px;
}

.contact-item a{
    color: white;
    text-decoration: none;
}

.contact-item svg {
  color: #d6b8a8;
}

.t-justify {
    text-align: justify;
}

.mt-2 {
    margin-top: .5em;
}

@media(max-width: 900px) {
    .content h1 {
        font-size: 42px;
    }

    header {
        text-align: center;
    }

    .buttons {
        justify-content: center;
    }
}