* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #FFE66D;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
    min-height: 100vh;
    padding: 20px;
    color: #2d3436;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
    background: #FF6B6B;
    border-radius: 20px;
    box-shadow: 0 8px 0 #cc5555, 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
}

header h1 {
    font-size: 3.5em;
    color: white;
    text-shadow: 3px 3px 0 #cc5555;
    margin-bottom: 10px;
    transform: rotate(-2deg);
}

header p {
    font-size: 1.3em;
    color: #fff;
    font-weight: bold;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 0 #dfe6e9, 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 4px solid #2d3436;
}

.project-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 0 #dfe6e9, 0 20px 35px rgba(0,0,0,0.2);
}

.project-card:nth-child(1) {
    border-color: #4ECDC4;
}

.project-card:nth-child(2) {
    border-color: #FF6B6B;
}

.project-card h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-card:nth-child(1) h2 {
    color: #4ECDC4;
}

.project-card:nth-child(2) h2 {
    color: #FF6B6B;
}

.icon {
    font-size: 1.3em;
}

.project-card .subtitle {
    color: #6c5ce7;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.project-card p {
    line-height: 1.9;
    color: #2d3436;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.story-section {
    background: #FFF4D9;
    border: 3px dashed #FFB84D;
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    transform: rotate(-1deg);
}

.story-section h3 {
    color: #FF6B6B;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.story-section p {
    font-size: 1em;
    font-style: italic;
    color: #2d3436;
}

.cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: #6c5ce7;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 #5443c7;
    border: 3px solid #2d3436;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 0 #5443c7;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #5443c7;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05em;
    font-weight: 600;
}

.features li:before {
    content: "🎯";
    position: absolute;
    left: 0;
    font-size: 1.3em;
}

.about-card {
    background: #95E1D3;
    border-radius: 20px;
    padding: 40px;
    border: 4px solid #2d3436;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 0 #7ec9bb, 0 10px 25px rgba(0,0,0,0.15);
    transform: rotate(1deg);
}

.about-card h2 {
    color: #2d3436;
    font-size: 2.3em;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 1.1em;
    line-height: 1.8;
}

footer {
    text-align: center;
    color: #2d3436;
    padding: 30px;
    font-size: 1.1em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .projects {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 2.5em;
    }
}
