.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 2em;
    color: #0d2d52;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
    margin-top: 40px;
}

h3 {
    font-size: 1.5em;
    color: #1a4a8d;
    margin-top: 30px;
}

h4 {
    font-size: 1.2em;
    color: #333;
}

p {
    margin: 15px 0;
    text-align: justify;
}

a {
    color: #ff6600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.cta-button {
    display: block;
    width: 250px;
    margin: 30px auto;
    padding: 15px 20px;
    background-color: #ff6600;
    color: #ffffff;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
    text-decoration: none;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
}

.illustration-placeholder {
    width: 600px;
  
    background-color: #a0e0e0; 
   border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 3px solid #fff;


blockquote {
    border-left: 5px solid #ff6600;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #fff3e0;
    font-style: italic;
    color: #555;
}

blockquote .expert-title {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #0d2d52;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

table thead tr {
    background-color: #0d2d52;
    color: #ffffff;
    text-align: left;
}

table th,
table td {
    padding: 12px 15px;
}

table tbody tr {
    border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tbody tr:last-of-type {
    border-bottom: 2px solid #ff6600;
}

ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.checklist {
    list-style-type: none;
    padding: 0;
}

.checklist li::before {
    content: '✔';
    color: #28a745;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
