/* Basic resets and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2f2f2f;
    color: white;
    padding: 20px;
}

header .logo h1 {
    font-size: 2rem;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0066ff, #0033cc);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .cta-button {
    background-color: #ff6347;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #e55a3c;
}

/* General Section Styles */
.section {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Section content items */
.section-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f2f2f2;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.section-item h3 {
    font-size: 1.5rem;
    color: #ff6347;
}

.section-item p {
    font-size: 1.2rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1rem;
}
/* Basic resets and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2f2f2f;
    color: white;
    padding: 20px;
}

header .logo h1 {
    font-size: 2rem;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0066ff, #0033cc);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .cta-button {
    background-color: #ff6347;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #e55a3c;
}

/* General Section Styles */
.section {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Section content items */
.section-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f2f2f2;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.section-item h3 {
    font-size: 1.5rem;
    color: #ff6347;
}

.section-item p {
    font-size: 1.2rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1rem;
}
/* 3D Button Hover Effect */
.cta-button {
    background-color: #ff6347;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.cta-button:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

/* 3D Rotating Background for Hero Section */
.hero {
    background: linear-gradient(to right, #0066ff, #0033cc);
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    animation: rotateBackground 10s infinite linear;
}

@keyframes rotateBackground {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}
