
:root {
    --primary: #f4f4f4;
    --secondary: darkred;
    --accent: red;
    --text-color: #333;
    --button-bg: red;
    --button-text: white;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--primary);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.structural {
    margin: 40px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: justify;
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 10px;
    max-width: 1200px;
    transition: transform 0.3s ease-in-out;
}

.structural:hover {
    transform: scale(1.02);
}

.info {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 2fr;
    padding: 20px;
    font-size: 25px;
    line-height: 1.6;
    align-items: start;
}

.info img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.content {
    display: flex;
    flex-direction: column;
    height: 250px;
}


h2 {
    /*
    color: var(--secondary);*/
    color:black;
    font-size: 22px;
    margin-bottom: 10px;
    padding-top: 5px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 0px;
}

ul li {
    background: var(--accent);
    color: white;
    padding: 40px;
    margin: 10px 0;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 18px;
}

ul li:hover {
    background: var(--secondary);
}



.btn {
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background: darkred;
    transform: scale(1.05);
}