/* Reset & global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #0c1c3d;
  background: #f5f5f5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #0c1c3d;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

header nav {
  margin-top: 20px;
}

header nav a {
  margin: 0 15px;
  font-weight: 500;
  color: #C9A65C;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #ffffff;
}

/* Sections */
section {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-executive {
  background-color: #0c1c3d;
  color: #C9A65C;
}

.section-executive .text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-executive .text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-studio {
  background-color: #ffffff;
  color: #23527C;
}

.section-studio .text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #23527C;
}

.section-studio .text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.section-studio .text ul {
  list-style: none;
  margin-top: 15px;
}

.section-studio .text ul li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.section-studio .text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #E68F28;
}

section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

section .text {
  flex: 1 1 500px;
  padding: 20px;
}

section .image {
  flex: 1 1 500px;
  padding: 20px;
}

section .image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #C9A65C;
  color: #0c1c3d;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: #0c1c3d;
  border: 2px solid #C9A65C;
}

/* Footer */
footer {
  background-color: #dddddd;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  section .container {
    flex-direction: column;
  }

  section .image, section .text {
    padding: 10px;
  }
}