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

body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1b1f24;
    color: #ffffff;
}

.header .nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px;
    background-color: #1b1f24;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2em;
}

.hero-content p {
    color: #a9a9a9;
    margin: 15px 0;
}

.cta-button {
    background-color: #2979ff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
}

.hero-image {
    background-color: #a9a9a9;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    width: 200px;
    height: 198px;
    text-align: center;
}

/* Info Section */
.info-section {
    text-align: center;
    padding: 50px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.info-box {
    border: 2px solid #2979ff;
    padding: 0px;
    color: #333;
    height: 200px;
}

/*.placeholder-image {
    width: 298px;
    height: 200px;
    margin: 0 auto 10px;
    background-color: #d0d0d0;
    border: 2px dashed #2979ff;
}*/

/* Quote Section */
.quote-section {
    background-color: #e0e0e0;
    text-align: center;
    padding: 20px 20px;
    font-style: italic;
    color: #555;
}

.quote-section blockquote {
    max-width: 700px;
    margin: 0 auto;
}

.quote-section cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #2979ff;
    border-radius: 8px;
    color: white;
    margin: 50px 20px;
}

.cta-text {
    max-width: 70%;
    line-height: 1.5;
}

.cta-section .cta-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.cta-section .cta-button:hover {
    background-color: white;
    color: #2979ff;
}
