File size: 2,523 Bytes
2c67ad6 578adee 2c67ad6 a23638f 578adee 2c67ad6 578adee 2c67ad6 578adee a23638f 2c67ad6 a23638f 578adee 2c67ad6 578adee 2c67ad6 578adee 2c67ad6 578adee 2c67ad6 578adee 2c67ad6 578adee 2c67ad6 578adee 2c67ad6 578adee a23638f 2c67ad6 578adee 2c67ad6 578adee 2c67ad6 578adee 2c67ad6 578adee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
header {
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: white;
text-align: center;
padding: 50px 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
position: relative;
}
.header-content h1 {
font-size: 2.5em;
margin: 0;
animation: fadeIn 1s ease-in;
}
.header-content p {
font-size: 1.2em;
margin-top: 10px;
}
.header-img {
width: 100%;
max-height: 300px;
object-fit: cover;
margin-top: 20px;
border-radius: 8px;
}
section {
padding: 40px 20px;
max-width: 1200px;
margin: 0 auto;
border-radius: 8px;
margin-bottom: 20px;
}
#intro {
background: rgba(173, 216, 230, 0.2); /* Light Blue */
}
#challenges {
background: rgba(240, 230, 140, 0.2); /* Light Yellow */
}
#solutions {
background: rgba(144, 238, 144, 0.2); /* Light Green */
}
#implementation {
background: rgba(221, 160, 221, 0.2); /* Light Plum */
}
#benefits {
background: rgba(255, 182, 193, 0.2); /* Light Pink */
}
#why-us {
background: rgba(135, 206, 235, 0.2); /* Light Sky Blue */
}
h2 {
color: #1e3c72;
font-size: 2em;
border-bottom: 2px solid #2a5298;
display: inline-block;
padding-bottom: 5px;
}
#intro p {
font-size: 1.1em;
margin: 15px 0;
}
.challenge-item {
background: white;
padding: 20px;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.challenge-item:hover {
transform: translateY(-5px);
}
.solution-card {
background: #fff;
padding: 20px;
margin: 15px 0;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.solution-card:hover {
transform: scale(1.03);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.solution-card h3 {
color: #2a5298;
margin-top: 0;
}
.section-img {
width: 100%;
max-height: 250px;
object-fit: cover;
margin-top: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
ul {
list-style-type: disc;
margin-left: 20px;
}
footer {
background: #1e3c72;
color: white;
text-align: center;
padding: 30px 20px;
margin-top: 40px;
}
footer h2 {
color: white;
border-bottom: 2px solid white;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
} |