/* Global styles */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.irish-trees-intro {
    text-align: center;
    padding: 20px;
    background-color: #ccffcc;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.irish-trees-intro h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.irish-trees-intro p {
    font-size: 1.2em;
    color: #555;
}

/* Container for tree info boxes */
.tree-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

/* Individual tree box with image and text */
.tree-box {
    display: flex;
    flex-direction: row;
    background-color: #f9f9f9;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

/* Image styles, resizing to a consistent size */
.tree-box img {
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 5px;
}

/* Text box styling */
.tree-text {
    flex-grow: 1;
}

.tree-text h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.tree-text p {
    font-size: 1.1em;
    color: #333;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .tree-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tree-box img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px; /* Increase width for better mobile display */
        height: auto;
    }

    .tree-text h2 {
        font-size: 1.5em;
    }

    .tree-text p {
        font-size: 1em;
        padding: 0 10px;
    }
}
