/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  padding: 0;
  margin: 0;
}

/* Navigation */
nav {
  background-color: #2c3e50;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

nav li {
  margin: 0;
}

nav a {
  display: block;
  color: #ecf0f1;
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  background-color: #34495e;
}

/* Main Content Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  min-height: calc(100vh - 60px);
}

/* Typography */
h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

h2 {
  color: #34495e;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  color: #7f8c8d;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Buttons */
.btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.1s ease;
  font-weight: 500;
}

.btn:hover {
  background-color: #2980b9;
}

/* Articles */
article {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

article:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

article h2 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 1.5rem;
}

article p {
  color: #666;
  margin-bottom: 1rem;
}

article a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

article a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Testimonials */
[data-lp-var="homepage-testimonial"] {
  background-color: #f9f9f9;
  border-left: 4px solid #3498db;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

[data-lp-testimonial] {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

[data-lp-person] {
  display: block;
  font-weight: bold;
  color: #2c3e50;
  margin-top: 1rem;
}

[data-lp-title],
[data-lp-company] {
  display: block;
  color: #7f8c8d;
  font-size: 0.9rem;
}

[data-lp-profile] {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

[data-lp-logo] {
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* Images */
.homepage-image,
.homepage-images {
  margin: 1.5rem 0;
}

.homepage-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

img[data-lp-var] {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.homepage-images img {
  flex: 1;
  min-width: 200px;
}

/* Forms */
form {
  max-width: 500px;
  margin: 2rem 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav a {
    padding: 0.75rem 1rem;
  }

  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .homepage-images {
    flex-direction: column;
  }
}
