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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color:  rgb(18, 46, 43);
    color: #333;
}

/* Header Section */
header {
    background-color: #4CAF50; /* Green */
    color: white;
    text-align: center;
    padding: 20px 0;
}

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

header p {
    font-size: 1.2em;
}

/* Sections */
section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2, h3, h4 {
    color: #4CAF50; /* Green */
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Irrigation Process and Systems */
.irrigation-process {
    margin-bottom: 20px;
}

/* Problems and Solutions */
.problems-solutions {
    margin-bottom: 20px;
}

.problems-solutions ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Graph Section */
.graph-section {
    margin-top: 30px;
    text-align: center;
}

/* Components Section */
.agri-tools, .sustainable-farming {
    margin-bottom: 20px;
}

.agri-tools img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

video {
    border-radius: 8px;
    max-width: 100%;
}

/* Social Media Section */
#social-media {
    text-align: center;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #4CAF50; /* Green */
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333; /* Dark Gray */
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section {
        padding: 15px;
    }
}
